https://fedorahosted.org/freeipa/ticket/5833
From e69514ade7bae97bb2bb0e541c080c727ff7056c Mon Sep 17 00:00:00 2001 From: Stanislav Laznicka <slazn...@redhat.com> Date: Fri, 27 May 2016 14:44:30 +0200 Subject: [PATCH] Increased mod_wsgi socket-timeout Longer-running CLI commands sometimes fail with "gateway time out" although the task still runs and finishes on server, not notifying the CLI back. Increasing socket-timeout should solve this. https://fedorahosted.org/freeipa/ticket/5833 --- install/conf/ipa.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install/conf/ipa.conf b/install/conf/ipa.conf index cf10fc815640bcfc56152d342ee70d7d363ba4e5..7686999406bc2be57c121006931289c17bee67ad 100644 --- a/install/conf/ipa.conf +++ b/install/conf/ipa.conf @@ -41,7 +41,8 @@ WSGISocketPrefix /run/httpd/wsgi # Configure mod_wsgi handler for /ipa -WSGIDaemonProcess ipa processes=2 threads=1 maximum-requests=500 display-name=%{GROUP} +WSGIDaemonProcess ipa processes=2 threads=1 maximum-requests=500 \ + display-name=%{GROUP} socket-timeout=300 WSGIImportScript /usr/share/ipa/wsgi.py process-group=ipa application-group=ipa WSGIScriptAlias /ipa /usr/share/ipa/wsgi.py WSGIScriptReloading Off -- 2.5.5
-- Manage your subscription for the Freeipa-devel mailing list: https://www.redhat.com/mailman/listinfo/freeipa-devel Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code