Skip to content

Instantly share code, notes, and snippets.

@mly520
Created November 12, 2013 03:13
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 mly520/7424856 to your computer and use it in GitHub Desktop.
Save mly520/7424856 to your computer and use it in GitHub Desktop.
httpd.conf で proxy(URL書き替え)
ProxyRequests Off
ProxyPreserveHost On
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass /EMBackend http://localhost:8080/backend/mvc
ProxyPassReverse /EMBackend http://localhost:8080/backend/mvc
<Location /EMBackend>
Order allow,deny
Allow from all
</Location>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment