blob: b184b1cc213f5f682bc1fc4f46716c0b9ae6e2a6 (
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.tg13.gathering.org
ServerAlias krosus.tg13.gathering.org
DocumentRoot /srv/stream.tg13.gathering.org
<Directory "/srv/stream.tg13.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.tg13.gathering.org.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel info
CustomLog /var/log/apache2/access-stream.tg13.gathering.org.log combined
ServerSignature On
</VirtualHost>
|