21 lines
327 B
Markdown
21 lines
327 B
Markdown
---
|
|
title: "Apache httpd configs"
|
|
menu:
|
|
main:
|
|
parent: Linux
|
|
---
|
|
|
|
# HTTP proxy with Digest Auth
|
|
|
|
```
|
|
<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/
|
|
```
|