Update nginx.conf

This commit is contained in:
fab 2025-01-07 20:27:51 +01:00 committed by GitHub
parent e6d095bd72
commit 744bc2669d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,16 +1,8 @@
events { server {
worker_connections 1024;
}
http {
include /etc/nginx/waf_rules/*.conf; # Include WAF rules
server {
listen 80; listen 80;
server_name example.com; server_name example.com;
location / { location / {
return 200 "Hello, World!"; return 200 "Hello, World!";
} }
}
} }