Created
December 5, 2014 15:02
-
-
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
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> | |
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