Apache 2.2 on Mountain Lion ignoring ProxyPass and sending request to DocumentRoot
- by James H
I have sickbeard running at 127.0.0.1:8081/sickbeard
ProxyRequests Off
ProxyPass /sickbeard http://127.0.0.1:8081/sickbeard
ProxyPassReverse /sickbeard http://127.0.0.1:8081/sickbeard
in httpd.conf
And yet when I try and access http://example.com/sickbeard/ it gives me a 404, with this in the error log.
File does not exist: /Library/Server/Web/Data/Sites/Default/sickbeard
Which I think means it's ignoring the ProxyPass and ProxyPassReverse directives?
Anyone know why this may be? For what it's worth, this setup used to work under Lion.
I have the following modules loaded:
LoadModule proxy_module libexec/apache2/mod_proxy.so
LoadModule proxy_connect_module libexec/apache2/mod_proxy_connect.so
LoadModule proxy_ftp_module libexec/apache2/mod_proxy_ftp.so
LoadModule proxy_http_module libexec/apache2/mod_proxy_http.so
LoadModule proxy_scgi_module libexec/apache2/mod_proxy_scgi.so
LoadModule proxy_ajp_module libexec/apache2/mod_proxy_ajp.so
LoadModule proxy_balancer_module libexec/apache2/mod_proxy_balancer.so
Thanks for your time!