-
Notifications
You must be signed in to change notification settings - Fork 2
/
mrl_apache_config
38 lines (30 loc) · 999 Bytes
/
mrl_apache_config
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
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName quast.bioinf.spbau.ru
DocumentRoot /var/www/quast/source
<Directory /var/www/quast/source>
Options FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/quast-error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/quast-access.log combined
Alias /static/ /var/www/quast/source/static/
<Directory /var/www/quast/source/static>
Order deny,allow
Allow from all
</Directory>
WSGIDaemonProcess quast user=saveliev group=www-data python-path=/var/www/quast/virtualenv/lib/python2.7/site-packages
WSGIProcessGroup quast
WSGIScriptAlias / /var/www/quast/source/wsgi.py
<Directory /var/www/quast/source>
<Files wsgi.py>
Order deny,allow
Allow from all
</Files>
</Directory>
</VirtualHost>