Skip to content

Instantly share code, notes, and snippets.

@jeevanullas
Created April 11, 2013 16:03
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 jeevanullas/5364670 to your computer and use it in GitHub Desktop.
Save jeevanullas/5364670 to your computer and use it in GitHub Desktop.
mod proxy with apache
<VirtualHost *>
ServerName eucalyptus.example.com
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://10.104.1.168:8773/services/Eucalyptus
ProxyPassReverse / http://10.104.1.168:8773/services/Eucalyptus
<Location />
Order allow,deny
Allow from all
</Location>
</VirtualHost>
<VirtualHost *>
ServerName walrus.example.com
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://10.104.1.168:8773/services/Walrus
ProxyPassReverse / http://10.104.1.168:8773/services/Walrus
<Location />
Order allow,deny
Allow from all
</Location>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment