10 lines
139 B
Nginx Configuration File
10 lines
139 B
Nginx Configuration File
events {}
|
|
http {
|
|
server {
|
|
listen 80;
|
|
location / {
|
|
return 200 'Hello from custom nginx!';
|
|
}
|
|
}
|
|
}
|