aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/templates/vhost_django_app.conf
blob: 9d64865f5eac11472a89ce6beb944e9831673373 (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
#footer
        <Location />
            Allow from all
        </Location>
</VirtualHost>