www.br0tkasten.de/content/linux/apache-httpd.md
2023-05-19 08:07:36 +02:00

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/
```