patterns/tests/nginx.conf

17 lines
256 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
2025-01-07 19:07:26 +01:00
2025-01-07 19:04:10 +01:00
server {
listen 80;
server_name example.com;
2025-01-07 19:07:26 +01:00
2025-01-07 19:04:10 +01:00
location / {
return 200 "Hello, World!";
}
}
}