blob: 6ca255da77a3dc7e97260ccf5035e4938b3abd48 (
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 nms-public.tg15.gathering.org
DocumentRoot /root/tgmanage/web/nms-public.gathering.org
AddHandler cgi-script .cgi .sh .pl .py
LogLevel warn
ErrorLog /var/log/apache2/error-nms-public.tg15.gathering.org.log
CustomLog /var/log/apache2/access-nms-public.tg15.gathering.org.log combined
<Directory "/root/tgmanage/web/nms-public.gathering.org">
AllowOverride None
Options Indexes FollowSymLinks ExecCGI MultiViews
Require all granted
</Directory>
ServerSignature On
</VirtualHost>
|