2023-07-12 20:34:00 +02:00

10 lines
216 B
Plaintext

server {
listen 80 reuseport;
location / {
default_type text/plain;
content_by_lua_block {
ngx.say("Hello World")
}
}
}