Files
fedora-infra_ansible/roles/autocloud/frontend/templates/autocloud.conf
2015-09-28 16:55:51 +00:00

25 lines
647 B
Plaintext

LoadModule wsgi_module modules/mod_wsgi.so
Alias /autocloud/static /usr/share/autocloud/static
WSGIPythonEggs /var/cache/autocloud/.python-eggs
WSGIDaemonProcess autocloud user=apache group=apache maximum-requests=50000 display-name=autocloud processes=3 threads=4 inactivity-timeout=300
WSGISocketPrefix run/wsgi
WSGIRestrictStdout Off
WSGIRestrictSignal Off
WSGIPythonOptimize 1
WSGIScriptAlias /autocloud /usr/share/autocloud/autocloud.wsgi
<Location /autocloud>
WSGIProcessGroup autocloud
Require all granted
</Location>
<Directory /usr/share/autocloud/>
Order deny,allow
Allow from all
Require all granted
</Directory>