mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-06-27 23:57:02 +08:00
24 lines
636 B
Plaintext
24 lines
636 B
Plaintext
Alias /voting/static /usr/lib/python2.7/site-packages/fedora_elections/static
|
|
|
|
WSGIDaemonProcess elections maximum-requests=1000 display-name=elections processes={{ wsgi_procs }} threads={{ wsgi_threads }}
|
|
WSGISocketPrefix run/wsgi
|
|
WSGIRestrictStdout On
|
|
WSGIRestrictSignal Off
|
|
WSGIPythonOptimize 1
|
|
|
|
WSGIScriptAlias /voting /var/www/fedora-elections.wsgi
|
|
|
|
<Location />
|
|
WSGIProcessGroup elections
|
|
<IfModule mod_authz_core.c>
|
|
# Apache 2.4
|
|
Require all granted
|
|
</IfModule>
|
|
<IfModule !mod_authz_core.c>
|
|
# Apache 2.2
|
|
Order deny,allow
|
|
Allow from all
|
|
</IfModule>
|
|
</Location>
|
|
|