-
Notifications
You must be signed in to change notification settings - Fork 0
/
nsfwaas.conf
39 lines (31 loc) · 888 Bytes
/
nsfwaas.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName tile
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
Order allow,deny
Allow from all
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
<Directory /workspace>
Order deny,allow
Allow from all
Require all granted
</Directory>
LoadModule wsgi_module modules/mod_wsgi.so
WSGIScriptAlias / /workspace/config.py
WSGIApplicationGroup %{GLOBAL}
</VirtualHost>