Add default response for import service root path

This commit is contained in:
Nils-Johan Gynther
2026-06-20 16:45:15 +02:00
parent 751a1fe075
commit bd3d594a9b
+5
View File
@@ -75,6 +75,11 @@ import.gynther.se {
# Blockera kända skadliga sökvägar
@blocked path_regexp ^/(\.env|\.git|wp-login|robots\.txt|api/graphql|actuator/env|\.DS_Store|file6\.php|wp-.*\.php)$
respond @blocked 403
# Lägg till en standard-sida för /
handle / {
respond "Welcome to Import Service" 200
}
reverse_proxy importer-api:3001
}