Skip to content

Instantly share code, notes, and snippets.

@karteek
Created January 10, 2010 22:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karteek/273814 to your computer and use it in GitHub Desktop.
Save karteek/273814 to your computer and use it in GitHub Desktop.
vhost entry for Etherpad installation behind a reverse proxy
<VirtualHost *:80>
ServerName example.com
ServerAlias *.example.com
ServerAdmin admin@example.com
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>
@zeigerpuppy
Copy link

thanks, works well

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment