Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigigraph / deployment / vigigraph.conf @ 74c804dc

History | View | Annotate | Download (531 Bytes)

1
<IfModule !mod_wsgi.c>
2
LoadModule wsgi_module modules/mod_wsgi.so
3
</IfModule>
4

    
5
<IfModule mod_wsgi.c>
6

    
7
WSGIRestrictStdout off
8
WSGIPassAuthorization on
9
WSGIDaemonProcess vigigraph user=apache group=apache threads=2
10
WSGIScriptAlias /vigilo/vigigraph "/etc/vigilo/vigigraph/vigigraph.wsgi"
11

    
12
KeepAlive Off
13

    
14
<Directory "/etc/vigilo/vigigraph/">
15
    <Files "vigigraph.wsgi">
16
        WSGIProcessGroup vigigraph
17
        WSGIApplicationGroup %{GLOBAL}
18

    
19
        Order deny,allow
20
        Allow from all
21
    </Files>
22
</Directory>
23

    
24
</IfModule>
25