Forked from tejastank/openerp-multi-domain-apache2-configuration.a2ensite.mywebsite.com.virtualhost
Created
July 19, 2016 20:18
-
-
Save mah3uz/2c582f56d08679f571fca6b785f083a8 to your computer and use it in GitHub Desktop.
openerp-multi-domain-apache2-configuration
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 webmaster@localhost | |
ProxyRequests Off | |
ProxyPreserveHost On | |
<Proxy *> | |
Order allow,deny | |
Allow from all | |
</Proxy> | |
ProxyPass / http://localhost:8069/ | |
ProxyPassReverse / http://localhost:8069/ | |
ProxyPreserveHost On | |
ProxyErrorOverride Off | |
SetEnv proxy-nokeepalive 1 | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment