Update nginx.conf

This commit is contained in:
fab 2025-01-07 19:07:26 +01:00 committed by GitHub
parent bae9ce6bb3
commit 25f83b6af2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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