-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapache.conf
73 lines (62 loc) · 1.79 KB
/
apache.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<Directory '${FAIRVISIONNETDIR}/csgame'>
AllowOverride None
<IfVersion < 2.4>
Order allow,deny
Allow from all
</IfVersion>
<IfVersion >= 2.4>
Require all granted
</IfVersion>
</Directory>
<Directory '${FAIRVISIONNETDIR}/staticfiles'>
Options FollowSymLinks Indexes MultiViews
IndexOptions FancyIndexing HTMLTable
AllowOverride None
<IfVersion < 2.4>
Order allow,deny
Allow from all
</IfVersion>
<IfVersion >= 2.4>
Require all granted
</IfVersion>
</Directory>
<Directory '${FAIRVISIONNETDIR}/datasets'>
Options FollowSymLinks Indexes MultiViews
IndexOptions FancyIndexing HTMLTable
AllowOverride None
<IfVersion < 2.4>
Order allow,deny
Allow from all
</IfVersion>
<IfVersion >= 2.4>
Require all granted
</IfVersion>
</Directory>
<IfDefine TESTING>
<VirtualHost *:80>
ServerName fairvision.net.localhost
WSGIDaemonProcess fairvision.net processes=2 threads=15 display-name=%{GROUP}
WSGIProcessGroup fairvision.net
WSGIScriptAlias / '${FAIRVISIONNETDIR}/csgame/wsgi.py'
Alias /static '${FAIRVISIONNETDIR}/staticfiles'
Alias /datasets '${FAIRVISIONNETDIR}/datasets'
</VirtualHost>
</IfDefine>
<IfDefine !TESTING>
<VirtualHost *:80>
ServerName fairvision.net
ProxyPreserveHost On
Redirect permanent / https://fairvision.net/
</VirtualHost>
<VirtualHost *:443>
ServerName fairvision.net
WSGIDaemonProcess fairvision.net processes=2 threads=15 display-name=%{GROUP}
WSGIProcessGroup fairvision.net
WSGIScriptAlias / '${FAIRVISIONNETDIR}/csgame/wsgi.py'
Alias /static '${FAIRVISIONNETDIR}/staticfiles'
Alias /datasets '${FAIRVISIONNETDIR}/datasets'
SSLEngine On
SSLCertificateFile '${FAIRVISIONNETDIR}/../certs/fairvision.net.pem'
SSLCertificateKeyFile '${FAIRVISIONNETDIR}/../certs/fairvision.net.key.pem'
</VirtualHost>
</IfDefine>