Create nginx.conf

This commit is contained in:
fab
2025-01-07 19:04:10 +01:00
committed by GitHub
parent bda045257b
commit b0193fcdc8

14
tests/nginx.conf Normal file
View File

@@ -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!";
}
}
}