Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigigraph / deployment / vigigraph.conf @ 2887f19e

History | View | Annotate | Download (452 Bytes)

1 0f317fa6 Aurelien BOMPARD
<IfModule mod_wsgi.c>
2
3
WSGIRestrictStdout off
4
WSGIPassAuthorization on
5
WSGIDaemonProcess vigigraph user=apache group=apache threads=2
6
WSGIScriptAlias /vigilo/vigigraph "/etc/vigilo/vigigraph/vigigraph.wsgi"
7
8
KeepAlive Off
9
10
<Directory "/etc/vigilo/vigigraph/">
11
    <Files "vigigraph.wsgi">
12
        WSGIProcessGroup vigigraph
13
        WSGIApplicationGroup %{GLOBAL}
14
15
        Order deny,allow
16
        Allow from all
17
    </Files>
18
</Directory>
19
20
</IfModule>