From 68ced5ea3b2abdacb3159a12544cbc197941c755 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sat, 2 Nov 2024 07:21:06 +0100 Subject: [PATCH] Created Reverse Proxy Hints (markdown) --- Reverse-Proxy-Hints.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Reverse-Proxy-Hints.md 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