add goaccess

Signed-off-by: Zoey <zoey@z0ey.de>
This commit is contained in:
Zoey
2024-01-13 09:04:59 +01:00
parent f96a4d32a3
commit a6797c9f6b
17 changed files with 361 additions and 136 deletions

View File

@@ -13,8 +13,9 @@ server {
include conf.d/include/block-exploits.conf;
{% if use_default_location %}
location / {
alias /html/404/;
include conf.d/include/acme-challenge.conf;
root /html/404;
try_files $uri /index.html;
}
{% endif %}

View File

@@ -26,7 +26,9 @@ server {
{%- if value == "404" %}
location / {
alias /html/404/;
include conf.d/include/acme-challenge.conf;
root /html/404;
try_files $uri /index.html;
}
{%- endif %}
@@ -44,14 +46,16 @@ server {
{%- if value == "congratulations" %}
location / {
include conf.d/include/acme-challenge.conf;
alias /html/default/;
root /html/default;
try_files $uri /index.html;
}
{%- endif %}
{%- if value == "html" %}
location / {
include conf.d/include/acme-challenge.conf;
alias /data/etc/html/;
root /data/etc/html;
try_files $uri /index.html;
}
{%- endif %}
}