Created
October 27, 2018 17:11
-
-
Save kesslern/bf54155af5b1b7a59841860f5892dbf0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <VirtualHost *:80> | |
| ProxyPass "/kodi" "http://192.168.18.5:8099" | |
| ProxyPass "/github-webhook" "http://192.168.18.12:8190/github-webhook" | |
| Redirect "/" "https://tower.pokecenter.xyz" | |
| # DocumentRoot /config/www/ | |
| # <Directory "/config/www/"> | |
| # Options Indexes FollowSymLinks MultiViews | |
| # AllowOverride all | |
| # Order allow,deny | |
| # Allow from all | |
| # </Directory> | |
| </VirtualHost> | |
| <VirtualHost *:443> | |
| ServerName www.example.com | |
| SSLEngine on | |
| SSLCertificateFile "/config/keys/cert.crt" | |
| SSLCertificateKeyFile "/config/keys/cert.key" | |
| SSLCertificateChainFile "/config/keys/ca_bundle.crt" | |
| DocumentRoot /config/www/ | |
| <Directory "/config/www/"> | |
| Options Indexes FollowSymLinks MultiViews | |
| AllowOverride all | |
| Order allow,deny | |
| Allow from all | |
| </Directory> | |
| </VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment