1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-09-15 20:36:55 +00:00

Created Reverse Proxy Hints (markdown)

Peter Bieringer 2024-11-02 07:21:06 +01:00
parent eeca5d9b2f
commit 68ced5ea3b

23
Reverse-Proxy-Hints.md Normal file

@ -0,0 +1,23 @@
# Authentication
## Stripping domain name from authenticated user
### Apache
Insert config to strip domain name from authenticated user
```
RequestHeader edit X_REMOTE_USER "^(.*)@.*" "$1"
```
# Timeouts
## Increase timeout
### Apache
Increase timeout and also retry
```
ProxyPass http://localhost:5232/ retry=20 connectiontimeout=300 timeout=300
```