From 8638f198ff2874fa54d601448d1be2c523572444 Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 1 Aug 2026 17:35:26 +0000 Subject: [PATCH] fix: basic nginx.conf (no wallarm directives before module loads) --- internal/native/native.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/internal/native/native.go b/internal/native/native.go index a8b7b55..41b64ca 100644 --- a/internal/native/native.go +++ b/internal/native/native.go @@ -151,11 +151,7 @@ http { server { listen %s; server_name _; - allow 127.0.0.0/8; - deny all; - wallarm_mode off; - access_log off; - location /wallarm-status { wallarm_status on; } + location /health { return 200; } } } `, nginxDir, nginxDir, nginxDir, port)), 0644)