~ubuntu-branches/ubuntu/trusty/graphite-web/trusty

« back to all changes in this revision

Viewing changes to debian/apache2-graphite.conf

  • Committer: Package Import Robot
  • Author(s): Jonas Genannt
  • Date: 2013-03-09 16:06:34 UTC
  • Revision ID: package-import@ubuntu.com-20130309160634-4j3disdxyqruvsf6
Tags: 0.9.10+debian-1
Initial release. (Closes: #659632)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<VirtualHost *:80>
 
2
 
 
3
        WSGIDaemonProcess _graphite processes=5 threads=5 display-name='%{GROUP}' inactivity-timeout=120 user=_graphite group=_graphite
 
4
        WSGIProcessGroup _graphite
 
5
        WSGIImportScript /usr/share/graphite-web/graphite.wsgi process-group=_graphite application-group=%{GLOBAL}
 
6
        WSGIScriptAlias / /usr/share/graphite-web/graphite.wsgi
 
7
 
 
8
        Alias /content/ /usr/share/graphite-web/static/
 
9
        <Location "/content/">
 
10
                SetHandler None
 
11
        </Location>
 
12
 
 
13
        ErrorLog ${APACHE_LOG_DIR}/graphite-web_error.log
 
14
 
 
15
        # Possible values include: debug, info, notice, warn, error, crit,
 
16
        # alert, emerg.
 
17
        LogLevel warn
 
18
 
 
19
        CustomLog ${APACHE_LOG_DIR}/graphite-web_access.log combined
 
20
 
 
21
</VirtualHost>
 
22