mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-19 19:46:38 +08:00
25 lines
647 B
Plaintext
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>
|
|
|