-
Notifications
You must be signed in to change notification settings - Fork 0
/
mapfart.conf
34 lines (27 loc) · 1011 Bytes
/
mapfart.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
<VirtualHost *:80>
ServerName www.mapfart.com
Redirect permanent / http://mapfart.com/
</VirtualHost>
<VirtualHost *:80>
ServerName mapfart.com
ServerAdmin [email protected]
LogLevel info
ErrorLog /home/projects/mapfart/logs/error.log
CustomLog /home/projects/mapfart/logs/access.log combined
#ErrorDocument 401 /Forbidden.html
#ErrorDocument 403 /Forbidden.html
#ErrorDocument 404 /FileNotFound.html
#ErrorDocument 500 /cgi-bin/ServerError.pl
DocumentRoot /home/projects/mapfart/www
<Directory /home/projects/mapfart/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
WSGIDaemonProcess wsgi_mapfart threads=15 processes=15 \
display-name=wsgi_mapfart \
python-path=/home/projects/mapfart/venv/lib/python2.7/site-packages
WSGIProcessGroup wsgi_mapfart
WSGIScriptAlias / /home/projects/mapfart/mapfart.wsgi
</VirtualHost>