blob: 34298d61114f37735e64ac7ef4815fab5c2f6f2f (
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
31
32
33
34
35
36
37
38
39
40
41
42
|
<VirtualHost *:80>
Define rzi_root /srv/www/rhizi/mux-root.d/{{ domain_fqdn }}
Define rzi_webapp ${rzi_root}/webapp
Define rzi_fragment_d ${rzi_webapp}/fragment.d
ServerName {{ domain_fqdn }}
DocumentRoot ${rzi_webapp}
LogLevel info
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access_{{ domain_fqdn }}.log combined
SetOutputFilter DEFLATE
RewriteEngine On
RewriteRule ^/?$ /index [L,R]
ProxyPass /fragment.d !
#
# [!] proxy directives are order sensitive
#
# Temporary fix until #529 is implemented
ProxyPass /fragment.d !
ProxyRequests Off
ProxyPreserveHost On
ProxyPass /socket.io/ ws://127.0.0.1:{{ rz_port__http }}/socket.io/
ProxyPass / http://127.0.0.1:{{ rz_port__http }}/
ProxyPassReverse / http://{{ domain_fqdn }}/
<Directory ${rzi_root}/auth >
Require all denied
</Directory>
<Directory ${rzi_webapp} >
Options +FollowSymLinks
Require all granted
</Directory>
</VirtualHost>
|