From 4c2acd5812819bd59f6959c2a1e764aeb10696ea Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Fri, 23 Mar 2018 17:39:45 -0400 Subject: no bug - increase httpd limits --- conf/httpd.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'conf') diff --git a/conf/httpd.conf b/conf/httpd.conf index 20a21f5db..3bde2aeab 100644 --- a/conf/httpd.conf +++ b/conf/httpd.conf @@ -4,7 +4,8 @@ ServerRoot "/etc/httpd" ServerAdmin root@localhost PidFile /tmp/httpd.pid -Timeout 60 +Timeout 120 +LimitRequestLine 35000 KeepAlive Off MaxKeepAliveRequests 100 KeepAliveTimeout 15 -- cgit v1.2.3-24-g4f1b From 1b89f51c966016ac19316c368efe94150723ec91 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Sat, 24 Mar 2018 15:15:11 -0400 Subject: no bug - enable HTTPS the proper way --- conf/httpd.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'conf') diff --git a/conf/httpd.conf b/conf/httpd.conf index 3bde2aeab..7fe859b59 100644 --- a/conf/httpd.conf +++ b/conf/httpd.conf @@ -92,7 +92,7 @@ DocumentRoot "/app" Alias "/bmo" "/app" - SetEnv HTTPS on + SetEnvIf X-Forwarded-Proto "https" HTTPS=on Options -Indexes -FollowSymLinks -- cgit v1.2.3-24-g4f1b