aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/conf-templates/apache-vhost.conf.j2
blob: 795a05f35580ad4fd1c5c7ca66374ff82eec97b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<VirtualHost *:80>
    ServerAdmin admin@example.com      # CUSTOMIZE
    ServerName ihatemoney.example.com  # CUSTOMIZE
    WSGIDaemonProcess ihatemoney user=www-data group=www-data threads=5 python-home={{ sys_prefix }}
    WSGIScriptAlias / {{ pkg_path }}/wsgi.py
    WSGIPassAuthorization On

    ErrorLog /var/log/apache2/ihatemoney.example.com_error.log
    CustomLog /var/log/apache2/ihatemoney.example.com_access.log combined

    <Directory {{ pkg_path }}>
       WSGIProcessGroup ihatemoney
       WSGIApplicationGroup %{GLOBAL}
       Require all granted
    </Directory>

    Alias /static/ {{ pkg_path }}/static/
</VirtualHost>