patterns/tests/nginx.conf

15 lines
254 B
Nginx Configuration File
Raw Normal View History

2025-01-07 19:04:10 +01:00
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!";
}
}
}