blob: e177d447ccabd53e2ef72d4b468cfcaf447a09a2 (
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
26
27
28
29
|
<VirtualHost *:8080>
ServerAdmin drift@gathering.org
ServerName nms.tg15.gathering.org
ServerAlias einstein.tg15.gathering.org
DocumentRoot /root/tgmanage/web/nms.gathering.org
<Directory "/root/tgmanage/web/nms.gathering.org">
AllowOverride None
Options Indexes FollowSymLinks ExecCGI MultiViews
AddHandler cgi-script .cgi .sh .pl .py
AddDefaultCharset UTF-8
AuthUserFile /root/tgmanage/web/.htpasswd
AuthName "Tech:Server Secret Volcano Lair"
AuthType Basic
require valid-user
</Directory>
ErrorLog /var/log/apache2/error-nms.tg15.gathering.org.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access-nms.tg15.gathering.org.log combined
ServerSignature On
</VirtualHost>
|