summaryrefslogtreecommitdiffstats
path: root/system/graphite-web/graphite-web.conf
blob: 983db9ce83a7f4b0acd22436f45115868d7b53cd (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
# This line needs to be in your server's config.
#Include /etc/httpd/extra/mod_wsgi.conf

WSGISocketPrefix /var/run/wsgi

<VirtualHost *:80>

    ServerName graphite
    ServerAlias graphite.*

    WSGIDaemonProcess graphite processes=5 threads=5 display-name='%{GROUP}' inactivity-timeout=120 user=graphite group=graphite
    WSGIProcessGroup graphite
    WSGIApplicationGroup %{GLOBAL}
    WSGIImportScript /usr/share/graphite-web/graphite.wsgi process-group=graphite application-group=%{GLOBAL}
    WSGIScriptAlias / /usr/share/graphite-web/graphite.wsgi

    <Directory /usr/share/graphite-web/>
        Order deny,allow
        Allow from all
        Require all granted
    </Directory>

    Alias /content/ /usr/share/graphite-web/static/content/
    <Location /content/>
        SetHandler None
    </Location>

    ErrorLog /var/log/httpd/graphite_error_log
    CustomLog /var/log/httpd/graphite_access_log common

</VirtualHost>