Hi , I have created an Apache module (mod_authentification) which connects to an external server in order to validate the user of an application.Now I want to call the mod_proxy directly after calling the other module (the mod_authentification) the mod_proxy will allow me to redirect informations to a third server. I tried to make a Load mod_proxy after the Load mod_authentification with the directives on the httpd.conf file:
<IfModule mod_proxy> #mode reverse proxy ProxyRequests On ProxyVia On #ProxyPreserveHost On ProxyReceiveBufferSize 4096 ProxyBadHeader Ignore ProxyPass / http://servertest.test:50000 ProxyPassReverse / http://servertest.test:50000 RequestHeader unset Accept-Encoding </IfModule> Have you any idea?? Thank you -- Karim Bendadda
