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

        WSGIScriptAlias / <%= wsgi_path %>
        <Location />
            Allow from all
        </Location>
</VirtualHost>