Skip to content

Instantly share code, notes, and snippets.

@gollum23
Created December 5, 2014 15:02
Show Gist options
  • Save gollum23/159ceebe399bf7c301a8 to your computer and use it in GitHub Desktop.
Save gollum23/159ceebe399bf7c301a8 to your computer and use it in GitHub Desktop.
Archivo de configuración Proxy con Apache curso Admin de servidores y dev ops mejorandola
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName mejorandola.vac.io
ProxyRequests Off
ProxyVia Off
ProxyErrorOverride Off
ProxyPreserveHost On
<Proxy *>
Order deny, allow
Allow from all
</Proxy>
ProxyPass / http://localhost:8000/
ProxyPassReverse / http://localhost:8000/
ErrorLog ${APACHE_LOG_DIR}/myapp-error.log
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/myapp-access.log combined
ServerSignature On
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment