blob: 759521ba39bf00aa5925b678a941ce9cdd1f3710 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<VirtualHost *:80>
ServerName kanban.example.com
ServerSignature Off
ProxyPreserveHost On
<Location />
Require all granted
ProxyPassReverse http://127.0.0.1:8383
ProxyPassReverse http://kanban.example.com/
</Location>
DocumentRoot /usr/share/webapps/kanban
LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b" common_forwarded
ErrorLog /var/log/httpd/logs/kanban.example.com_error.log
CustomLog /var/log/httpd/logs/kanban.example.com_forwarded.log common_forwarded
CustomLog /var/log/httpd/logs/kanban.example.com_access.log combined env=!dontlog
CustomLog /var/log/httpd/logs/kanban.example.com.log combined
</VirtualHost>
|