patterns/tests/nginx.conf
2025-01-07 20:27:51 +01:00

9 lines
115 B
Nginx Configuration File

server {
listen 80;
server_name example.com;
location / {
return 200 "Hello, World!";
}
}