aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/templates/vhost_django_app.conf
blob: fffd5321109a3ab0b5532f4b899aece74e06b90b (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 / <%= wsgi_dir%>/<%= name %>.wsgi

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