aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/templates/vhost_django_app.conf
blob: 270e14d0e0ae03554a050824448f7e6948f2d84b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<VirtualHost *:80>
        ServerName <%= name %>
        # Serve static content directly
        DocumentRoot  /dev/null

        WSGIScriptAlias / /usr/local/lib/wsgi/<%= name %>.wsgi

        <Location />
            Allow from all
        </Location>
</VirtualHost>