Skip to content

Instantly share code, notes, and snippets.

@eiswind
Created February 19, 2012 10:54
Show Gist options
  • Save eiswind/1863152 to your computer and use it in GitHub Desktop.
Save eiswind/1863152 to your computer and use it in GitHub Desktop.
VAADIN mod_proxy config that works for me
<VirtualHost *:80>
ServerName shop.buchmanager.com
ProxyPass /VAADIN/ http://127.0.0.1:8889/VAADIN/
ProxyPass /APP/ http://127.0.0.1:8889/APP/
ProxyPass / http://127.0.0.1:8889/shop/
ProxyPreserveHost On
# Local reverse proxy authorization override
# Most unix distribution deny proxy by default (ie /etc/apache2/mods-enabled/proxy.conf in Ubuntu)
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment