From b0193fcdc86bbf695038297a3b6af392904878bd Mon Sep 17 00:00:00 2001 From: fab Date: Tue, 7 Jan 2025 19:04:10 +0100 Subject: [PATCH] Create nginx.conf --- tests/nginx.conf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/nginx.conf diff --git a/tests/nginx.conf b/tests/nginx.conf new file mode 100644 index 0000000..f6df494 --- /dev/null +++ b/tests/nginx.conf @@ -0,0 +1,14 @@ +events { + worker_connections 1024; +} + +http { + include /etc/nginx/waf_rules/*.conf; # Include WAF rules + server { + listen 80; + server_name example.com; + location / { + return 200 "Hello, World!"; + } + } +}