patterns/tests/nginx.conf

9 lines
115 B
Nginx Configuration File
Raw Normal View History

2025-01-07 20:27:51 +01:00
server {
listen 80;
server_name example.com;
2025-01-07 19:07:26 +01:00
2025-01-07 20:27:51 +01:00
location / {
return 200 "Hello, World!";
2025-01-07 19:04:10 +01:00
}
}