Apache 2.2 on Mountain Lion ignoring ProxyPass and sending request to DocumentRoot

Posted by James H on Server Fault See other posts from Server Fault or by James H
Published on 2012-10-24T10:59:30Z Indexed on 2012/10/24 11:03 UTC
Read the original article Hit count: 353

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!

© Server Fault or respective owner

Related posts about apache2

Related posts about macosx