fix: add proxy timeout to httpd to resolve public domain issues with hairpin nat
All checks were successful
ci / treefmt (push) Successful in 3m39s

This commit is contained in:
Ceferino Patino 2026-06-09 15:17:35 -05:00
commit ee443483fd
Signed by: c4patino
SSH key fingerprint: SHA256:Wu+cU1t+7zVT9wzew/4meNmeulo66NzMqc22MdDBgXI

View file

@ -93,6 +93,7 @@
RequestHeader set X-Forwarded-For %{REMOTE_ADDR}s
RewriteEngine On
ProxyTimeout 300
ProxyPreserveHost On
${honeypotConfig}
@ -100,7 +101,7 @@
${robotsConfig}
# --- ${name} (subdomain access) ---
ProxyPass / http://${hostIP}:${p}/
ProxyPass / http://${hostIP}:${p}/ connectiontimeout=30 timeout=300 retry=0
ProxyPassReverse / http://${hostIP}:${p}/
'';
}