Created
January 10, 2010 22:06
-
-
Save karteek/273814 to your computer and use it in GitHub Desktop.
vhost entry for Etherpad installation behind a reverse proxy
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> | |
ServerName example.com | |
ServerAlias *.example.com | |
ServerAdmin [email protected] | |
ErrorLog /var/log/apache2/etherpad.error.log | |
LogLevel warn | |
CustomLog /var/log/apache2/etherpad.access.log combined | |
ServerSignature Off | |
ProxyPass / http://localhost:9000/ | |
ProxyPassReverse / http://localhost:9000/ | |
ProxyPreserveHost on | |
<Proxy *> | |
Options FollowSymLinks MultiViews | |
AllowOverride All | |
Order allow,deny | |
allow from all | |
</Proxy> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks, works well