mirror of
https://github.com/fabriziosalmi/patterns.git
synced 2025-12-17 17:55:48 +00:00
15 lines
254 B
Nginx Configuration File
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!";
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|