10 lines
216 B
Plaintext
10 lines
216 B
Plaintext
server {
|
|
listen 80 reuseport;
|
|
location / {
|
|
default_type text/plain;
|
|
content_by_lua_block {
|
|
ngx.say("Hello World")
|
|
}
|
|
}
|
|
}
|