blob: 7e24b5c9ce29afa1bb4fd9f4ae9ca13b93e80432 (
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
30
|
<VirtualHost *:8080>
ServerAdmin drift@gathering.org
ServerName nms-public.tg16.gathering.org
ServerAlias nms-public.tg16.gathering.org
DocumentRoot /srv/tgmanage/web/nms-public.gathering.org
ScriptAlias /api/public/ /srv/tgmanage/web/nms-public.gathering.org/api/public/
<Directory "/srv/tgmanage/web/nms-public.gathering.org/api/public/">
AllowOverride None
Options +ExecCGI -MultiViews +Indexes +SymLinksIfOwnerMatch
Require all granted
</Directory>
<Directory "/srv/tgmanage/web/nms-public.gathering.org">
AllowOverride None
Options Indexes FollowSymLinks MultiViews
Require all granted
AddDefaultCharset UTF-8
</Directory>
ErrorLog /var/log/apache2/error-nms-public.tg16.gathering.org.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access-nms-public.tg16.gathering.org.log combined
ServerSignature On
</VirtualHost>
|