Posts

Showing posts from May, 2022

Skip basic authentication headers before passing a request to proxypass target host

This can be done via "RequestHeader unset Authorization"  <Location "/some_path">     Require all granted     ProxyPass https://target-host     RequestHeader unset Authorization </Location> Reference: 1 , 2