Greetings. How can we check if apache is forwarding the credentials to the source server.?
here is my scenario: Have a website on sharepoint intranet wich I want to forward to internet. on the client when send first request to reverse proxy, this response with a prompt, I fill with the credentials and I get the acces but the functionality is limited and many of the resources are no being downloaded, like images and style sheets. I have this conf it this might help understand me better: <VirtualHost *:8080> ProxyRequests Off ProxyPreserveHost Off <Proxy *> Order deny,allow Allow from all </Proxy> RewriteEngine On ProxyPass /innerLink/ http://intrasrv01:8080/sites/Poland/school/SitePages/Home.aspx/ ProxyPassReverse /innerLink/ http://intrasrv01:8080/sites/Poland/school/SitePages/Home.aspx/ ProxyPassReverseCookieDomain http://intrasrv01:8080/ / ProxyPassReverseCookiePath /innerLink/ /sites/Poland RequestHeader unset Accept-Encoding AddOutputFilterByType SUBSTITUTE text/html Substitute "s|http://intrasrv01:8080/|http://172.16.27.7:8080/|ni" </VirtualHost>