forked from hafenr/SECexplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfor_apache.conf
More file actions
25 lines (20 loc) · 828 Bytes
/
for_apache.conf
File metadata and controls
25 lines (20 loc) · 828 Bytes
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
<VirtualHost *:8020>
##########################################################################
#
# this file contains hard coded paths !
#
# so you might want to adapt them if the location of this folder changes
#
##########################################################################
# we start 5 processes and only one thread because we call rpy2 which disallows
# access from multiple threads within the same process:
WSGIDaemonProcess sec_explorer_backend user=www-data group=www-data threads=1 processes=5
ServerName example.com
WSGIScriptAlias / /home/user/SECexplorer/server/app.wsgi
<Directory /home/user/SECexplorer/server>
WSGIProcessGroup sec_explorer_backend
WSGIApplicationGroup %{GLOBAL}
Require all granted
</Directory>
</VirtualHost>
# vim: syntax=apache