Disable WSGIScriptReloading

This change simply disables mod_wsgi from automatically restarting apps
when the wsgi scripts are touched (or updated).  This seems like the
desired outcome since we do not want keystone to reload until we
explicitly trigger an Apache restart.

Change-Id: Ib714e8de4e42c5680b3133a9df7b9748dd6c6a88
This commit is contained in:
Matt Thompson 2016-08-17 16:03:46 -04:00
parent 355e979b2a
commit 672b69ea63

View File

@ -9,6 +9,7 @@ Listen {{ keystone_service_port }}
WSGIScriptAlias / /var/www/cgi-bin/keystone/main
WSGIApplicationGroup %{GLOBAL}
WSGIPassAuthorization On
WSGIScriptReloading Off
<IfVersion >= 2.4>
ErrorLogFormat "%{cu}t %M"
@ -79,6 +80,7 @@ Listen {{ keystone_admin_port }}
WSGIScriptAlias / /var/www/cgi-bin/keystone/admin
WSGIApplicationGroup %{GLOBAL}
WSGIPassAuthorization On
WSGIScriptReloading Off
<IfVersion >= 2.4>
ErrorLogFormat "%{cu}t %M"