blob: af1587916a92804863a38a1bc12ae7367b62cffd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# File Start
WSGISocketPrefix run/wsgi
WSGIRestrictStdout On
WSGIPassAuthorization On
WSGIApplicationGroup %{GLOBAL}
# These are the real tunables
#WSGIDaemonProcess daemon processes=2 threads=2 maximum-requests=1000 user=fas group=fas display-name=fas inactivity-timeout=30
WSGIDaemonProcess fas processes=2 threads=2 maximum-requests=1000 user=fas display-name=fas inactivity-timeout=30
WSGIPythonOptimize 1
WSGIScriptAlias /fas3 /usr/sbin/fas.wsgi
<Location /fas3>
WSGIProcessGroup fas
Order deny,allow
Allow from all
</Location>
Alias /fas3/static /usr/share/fas/themes/fedoraproject/
<Directory /usr/share/fas/themes/fedoraproject/>
Require all granted
</Directory>
<Directory /usr/sbin>
Require all granted
</Directory>
ErrorLog logs/fas-error.log
|