patterns/tests/nginx.conf
2025-01-07 19:04:10 +01:00

15 lines
254 B
Nginx Configuration File

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