Skip to content

Instantly share code, notes, and snippets.

@kesslern
Created October 27, 2018 17:11
Show Gist options
  • Select an option

  • Save kesslern/bf54155af5b1b7a59841860f5892dbf0 to your computer and use it in GitHub Desktop.

Select an option

Save kesslern/bf54155af5b1b7a59841860f5892dbf0 to your computer and use it in GitHub Desktop.
<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