bunkerweb/misc/dev/configs/server-http/hello.conf
2024-04-05 15:29:22 +01:00

6 lines
116 B
Text
Executable file

location /hello {
default_type 'text/plain';
content_by_lua_block {
ngx.say('Hello World!')
}
}