-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpipes.conf
32 lines (21 loc) · 966 Bytes
/
pipes.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
Listen 8081
<VirtualHost *:8081>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin webmaster@localhost
AddHandler cgi-script .cgi
AddHandler cgi-script .py
DocumentRoot /var/www/build/
ScriptAlias /cgi-bin/ /var/www/cgi-bin/
SetEnv PIPES_LOG /data/mugqic_pipelines.log
SetEnv PIPES_DB /data/pipes_stats.db
# ErrorLog ${HTTPD_LOG_PATH}/error.log
# CustomLog ${HTTPD_LOG_PATH}/access.log combined
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet