~b.clermont-deactivatedaccount/graphite/debian-packaging

« back to all changes in this revision

Viewing changes to debian/conf/apache2.conf.in

  • Committer: Bruno Clermont
  • Date: 2011-09-22 23:22:37 UTC
  • Revision ID: bruno.clermont@gmail.com-20110922232237-ttv7sa02zgedgjht
rewrite graphite packaging

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<VirtualHost *:80>
2
 
        ServerName graphite
3
 
        <Location "/">
4
 
                SetHandler python-program
5
 
                PythonHandler django.core.handlers.modpython
6
 
                SetEnv DJANGO_SETTINGS_MODULE graphite.settings
7
 
                PythonDebug Off
8
 
                PythonAutoReload Off
9
 
        </Location>
10
 
        <Location "/content/">
11
 
                SetHandler None
12
 
        </Location>
13
 
        <Location "/media/">
14
 
                SetHandler None
15
 
        </Location>
16
 
        Alias /content/ "/usr/share/graphite/webapp/content/"
17
 
        Alias /media/ "/usr/lib/pymodules/#PYTHON_VERSION#/django/contrib/admin/media/"
18
 
        ErrorLog /var/lib/graphite/storage/log/webapp/webapp-error.log
19
 
        CustomLog /var/lib/graphite/storage/log/webapp/webapp-access.log common
20
 
</VirtualHost>
21