-
-
Save vacax/9fa17b51d0064f430c3acce831b699dd to your computer and use it in GitHub Desktop.
Configuración virtualhost sin SSL
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 <<MiIP>> | |
ProxyPreserveHost On | |
ProxyRequests On | |
<Proxy *> | |
Order deny,allow | |
Allow from all | |
</Proxy> | |
ProxyPass / http://localhost:7000/ | |
ProxyPassReverse / http://localhost:7000/ | |
ErrorLog /var/log/error.log | |
TransferLog /var/log/access.log | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment