bunkerweb/misc/dev/configs/server-http/hello.conf

7 lines
116 B
Text
Raw Normal View History

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