diff --git a/conf/Caddyfile b/conf/Caddyfile index 4c6d2df..9da5272 100644 --- a/conf/Caddyfile +++ b/conf/Caddyfile @@ -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 }