From f5e362f1301f30abb347b1bd0bd4b574a56dd36d Mon Sep 17 00:00:00 2001 From: Stefano Alberto Russo <stefano.russo@gmail.com> Date: Mon, 21 Nov 2022 18:07:44 +0100 Subject: [PATCH] Increased Apache timeout to half an hour. Minor fix in the Proxy dockerfile. --- services/proxy/Dockerfile | 2 +- services/proxy/apache2.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/services/proxy/Dockerfile b/services/proxy/Dockerfile index 9ac721a..aa3a578 100644 --- a/services/proxy/Dockerfile +++ b/services/proxy/Dockerfile @@ -25,7 +25,7 @@ RUN chmod 755 /etc/supervisor/conf.d/run_certbot.sh # Enable mod_proxy and SSL RUN a2enmod proxy RUN a2enmod proxy_http -RUN sudo a2enmod ssl +RUN a2enmod ssl RUN a2enmod rewrite RUN a2enmod headers RUN a2enmod proxy_wstunnel diff --git a/services/proxy/apache2.conf b/services/proxy/apache2.conf index c98a8e3..3005d36 100644 --- a/services/proxy/apache2.conf +++ b/services/proxy/apache2.conf @@ -89,7 +89,7 @@ PidFile ${APACHE_PID_FILE} # # Timeout: The number of seconds before receives and sends time out. # -Timeout 300 +Timeout 1800 # # KeepAlive: Whether or not to allow persistent connections (more than -- GitLab