mirror of
https://github.com/fabriziosalmi/patterns.git
synced 2025-12-18 10:15:51 +00:00
9 lines
115 B
Nginx Configuration File
9 lines
115 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name example.com;
|
|
|
|
location / {
|
|
return 200 "Hello, World!";
|
|
}
|
|
}
|