feat: allows health-ping route through for dokuwiki

This commit is contained in:
Lewis Wynne 2026-04-07 22:21:32 +01:00
parent 1753a9fe09
commit dfd28d637a

View file

@ -2,9 +2,16 @@
{ {
services.caddy.virtualHosts."wiki.ily.rs" = { services.caddy.virtualHosts."wiki.ily.rs" = {
extraConfig = '' extraConfig = ''
import tinyauth @health path /health-ping
reverse_proxy localhost:8070 handle @health {
encode zstd gzip reverse_proxy localhost:8070
}
handle {
import tinyauth
reverse_proxy localhost:8070
encode zstd gzip
}
''; '';
}; };