Skip to content

Reverse Proxy Hints

Peter Bieringer edited this page Nov 12, 2024 · 3 revisions

See also

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