blob: ff8a7c01f994941305e713c73fb4eb32563c3168 (
plain)
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 *:80>
ServerAdmin drift@gathering.org
ServerName stream.tg14.gathering.org
ServerAlias krosus.tg14.gathering.org
DocumentRoot /srv/stream.tg14.gathering.org
<Directory "/srv/stream.tg14.gathering.org/">
AllowOverride None
Options Indexes FollowSymLinks ExecCGI MultiViews
Order allow,deny
Allow from all
AddHandler cgi-script .cgi .sh .pl .py
AddDefaultCharset UTF-8
</Directory>
ErrorLog /var/log/apache2/error-stream.tg14.gathering.org.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel info
CustomLog /var/log/apache2/access-stream.tg14.gathering.org.log combined
ServerSignature On
</VirtualHost>
|