mirror of
https://github.com/fabriziosalmi/patterns.git
synced 2025-12-17 09:45:34 +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!";
|
|
}
|
|
}
|