Apache httpd configs

HTTP proxy with Digest Auth

1
2
3
4
5
6
7
8
9
<Proxy *>
  AuthType Digest
  AuthName "mrtg"
  AuthUserFile "/etc/httpd/conf/mrtg.htdigest"
  Require valid-user
</Proxy>

ProxyPass / http://mrtg.lxc.br0tkasten.de/
ProxyPassReverse / http://mrtg.lxc.br0tkasten.de/
0%