forked from openplans/shareabouts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wsgi.conf
62 lines (50 loc) · 2.29 KB
/
wsgi.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
# Directory permission overrides
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
<Directory /opt/python/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
<Directory /opt/python/current/app/>
Require all granted
</Directory>
################################################################################
<VirtualHost *>
ServerName hubway.localhost
ServerAlias hubway.*.com
ServerAlias suggest.thehubway.com
ServerAlias suggest.bluebikes.com
WSGIDaemonProcess hubway processes=5 python-path=/opt/python/current/app:/opt/python/run/venv/lib64/python2.7/site-packages:/opt/python/run/venv/lib/python2.7/site-packages user=wsgi group=wsgi threads=1 home=/opt/python/current/app
WSGIProcessGroup hubway
WSGIScriptAlias / /opt/python/current/app/wsgi_hubway.py
</VirtualHost>
<VirtualHost *>
ServerName divvy.localhost
ServerAlias divvy.*.com
ServerAlias suggest.divvybikes.com
WSGIDaemonProcess divvy processes=5 python-path=/opt/python/current/app:/opt/python/run/venv/lib64/python2.7/site-packages:/opt/python/run/venv/lib/python2.7/site-packages user=wsgi group=wsgi threads=1 home=/opt/python/current/app
WSGIProcessGroup divvy
WSGIScriptAlias / /opt/python/current/app/wsgi_divvy.py
</VirtualHost>
<VirtualHost *>
ServerName babs.localhost
ServerAlias babs.*.com
ServerAlias suggest.bayareabikeshare.com
ServerAlias suggest.fordgobike.com
ServerAlias suggest.baywheels.com
WSGIDaemonProcess babs processes=5 python-path=/opt/python/current/app:/opt/python/run/venv/lib64/python2.7/site-packages:/opt/python/run/venv/lib/python2.7/site-packages user=wsgi group=wsgi threads=1 home=/opt/python/current/app
WSGIProcessGroup babs
WSGIScriptAlias / /opt/python/current/app/wsgi_babs.py
</VirtualHost>
<VirtualHost *>
ServerName biketown.localhost
ServerAlias biketown.*.com
ServerAlias suggest.biketownpdx.com
WSGIDaemonProcess biketown processes=5 python-path=/opt/python/current/app:/opt/python/run/venv/lib64/python2.7/site-packages:/opt/python/run/venv/lib/python2.7/site-packages user=wsgi group=wsgi threads=1 home=/opt/python/current/app
WSGIProcessGroup biketown
WSGIScriptAlias / /opt/python/current/app/wsgi_biketown.py
</VirtualHost>