blob: 2dc99a4d815f4db23e83a4fdf684622aa04e193e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<VirtualHost *:8080>
ServerAdmin drift@gathering.org
ServerName stats.tg15.gathering.org
DocumentRoot /root/tgmanage/web/stats.gathering.org
<Directory "/root/tgmanage/web/stats.gathering.org">
AllowOverride None
Options Indexes FollowSymLinks ExecCGI MultiViews
Require all granted
</Directory>
ErrorLog /var/log/apache2/error-stats.tg15.gathering.org.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access-stats.tg15.gathering.org.log combined
ServerSignature On
</VirtualHost>
|