Skip to content

Instantly share code, notes, and snippets.

@vacax
Created June 22, 2022 20:20
Show Gist options
  • Save vacax/9fa17b51d0064f430c3acce831b699dd to your computer and use it in GitHub Desktop.
Save vacax/9fa17b51d0064f430c3acce831b699dd to your computer and use it in GitHub Desktop.
Configuración virtualhost sin SSL
<VirtualHost *:80>
ServerAdmin admin@admin.com
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