diff --git a/Reverse-Proxy-Hints.md b/Reverse-Proxy-Hints.md new file mode 100644 index 0000000..42c7f94 --- /dev/null +++ b/Reverse-Proxy-Hints.md @@ -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 +``` \ No newline at end of file