Hi,I just started testing reverse proxying to from apache 2.4 to a backend wildfly 8.1 server using mod_proxy_ajp on centos 7, using this config:(from conf.d/vhosts.conf):<VirtualHost ...>...ProxyRequests Off
<Proxy balancer://cluster>BalancerMember ajp://127.0.0.1:8009</Proxy>ProxyPass / balancer://cluster stickysession=JSESSIONIDProxyPassReverse / balancer://cluster...</VirtualHost>(from conf.module.d/00-proxy.conf):# This file configures all the proxy modules:LoadModule proxy_module modules/mod_proxy.soLoadModule lbmethod_bybusyness_module modules/mod_lbmethod_bybusyness.soLoadModule lbmethod_byrequests_module modules/mod_lbmethod_byrequests.soLoadModule lbmethod_bytraffic_module modules/mod_lbmethod_bytraffic.soLoadModule lbmethod_heartbeat_module modules/mod_lbmethod_heartbeat.soLoadModule proxy_ajp_module modules/mod_proxy_ajp.soLoadModule proxy_balancer_module modules/mod_proxy_balancer.soLoadModule proxy_connect_module modules/mod_proxy_connect.soLoadModule proxy_express_module modules/mod_proxy_express.soLoadModule proxy_fcgi_module modules/mod_proxy_fcgi.soLoadModule proxy_fdpass_module modules/mod_proxy_fdpass.soLoadModule proxy_ftp_module modules/mod_proxy_ftp.soLoadModule proxy_http_module modules/mod_proxy_http.soLoadModule proxy_scgi_module modules/mod_proxy_scgi.soWhen I request the / URL, the main document loads successfully, but the CSS and image resources fail to load with 500 internal server errors. From the apache ssl_error_logs:[Fri Aug 22 22:10:50.657338 2014] [proxy:warn] [pid 12109] [client67.247.10.110:36486] AH01144: No protocol handler was valid for the URL /wildfly.css. If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule., referer:https://sandbox.dev.vosio.net/[Fri Aug 22 22:10:50.785537 2014] [proxy:warn] [pid 12108] [client67.247.10.110:43769] AH01144: No protocol handler was valid for the URL /wildfly_logo.png. If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule., referer:https://sandbox.dev.vosio.net/[Fri Aug 22 22:10:51.694137 2014] [proxy:warn] [pid 12107] [client67.247.10.110:46474] AH01144: No protocol handler was valid for the URL /jboss_community.png. If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule., referer: https://sandbox.dev.vosio.net/[Fri Aug 22 22:10:51.810280 2014] [proxy:warn] [pid 12109] [client67.247.10.110:37843] AH01144: No protocol handler was valid for the URL /favicon.ico. If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule.From what I can find from searching around, this is mostly due to people not loading the correct proxy submodule, however the 00-proxy.conf config is loading every proxy submodule there is.is there anything anyone can see that I'm doing wrong?thanks--
-----
EJ