Newer
Older
DocumentRoot "/var/www/html/{{ webRoot }}/"
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
43
44
45
ServerName default
Include conf/preset.conf
<Location />
Require all granted
</Location>
<FilesMatch "^\.(?!well-known)">
Order allow,deny
Deny from all
</FilesMatch>
<FilesMatch "\.(?:sh|sql|mysql|po|tpl|make|test)$">
Order allow,deny
Deny from all
</FilesMatch>
<FilesMatch "^wodby\.yml">
Order allow,deny
Deny from all
</FilesMatch>
<FilesMatch "^Makefile">
Order allow,deny
Deny from all
</FilesMatch>
<DirectoryMatch "/\.(?!well-known)">
Order allow,deny
Deny from all
</DirectoryMatch>
SetEnvIf Request_URI "^/\.healthz$" dontlog
RedirectMatch 204 .healthz
SetEnv HTTPS on
SetEnvIf X-Forwarded-Proto https HTTPS=on
<IfModule mod_proxy_http.c>
SSLProxyEngine on
</IfModule>