Skip to content

Instantly share code, notes, and snippets.

@myfinder
Created August 28, 2011 12:04
Show Gist options
  • Save myfinder/1176590 to your computer and use it in GitHub Desktop.
Save myfinder/1176590 to your computer and use it in GitHub Desktop.
OSXのApacheでmod_proxyしたいとき
$ cat /etc/apache2/other/proxy_isucon.conf
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://127.0.0.1:5000/
ProxyPassReverse / http://127.0.0.1:5000/
$ sudo apachectl restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment