In the current state, I'm getting a "Forbidden" error on every URL. When I restart httpd, I get this:
Invalid command 'BalancerMember', perhaps mis-spelled or defined by a module not included in the server configuration
which is referencing a file in /etc/httpd/conf.d containing:
<Proxy balancer://mongrel_cluster>
BalancerMember http://127.0.0.1:8001
BalancerMember http://127.0.0.1:8002
BalancerMember http://127.0.0.1:8003
BalancerMember http://127.0.0.1:8004
</Proxy>
httpd.conf contains:
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
LoadModule proxy_http_module modules/mod_proxy_http.so
So it seems to me the module should be getting loaded. Additionally:
apachectl -t -D DUMP_MODULES
Loaded Modules:
core_module (static)
authn_file_module (static)
authn_default_module (static)
authz_host_module (static)
authz_groupfile_module (static)
authz_user_module (static)
authz_default_module (static)
auth_basic_module (static)
include_module (static)
filter_module (static)
log_config_module (static)
env_module (static)
mime_magic_module (static)
usertrack_module (static)
setenvif_module (static)
ssl_module (static)
mpm_prefork_module (static)
http_module (static)
mime_module (static)
dav_module (static)
status_module (static)
autoindex_module (static)
asis_module (static)
info_module (static)
cgi_module (static)
dav_fs_module (static)
negotiation_module (static)
dir_module (static)
actions_module (static)
userdir_module (static)
alias_module (static)
rewrite_module (static)
so_module (static)
proxy_module (shared)
proxy_balancer_module (shared)
proxy_http_module (shared)
headers_module (shared)
dav_svn_module (shared)
authz_svn_module (shared)
Syntax OK