bunkerweb/tests/core/reverseproxy/ready.conf

9 lines
165 B
Text
Raw Normal View History

2024-03-01 15:50:41 +00:00
location /ready {
default_type 'text/plain';
rewrite_by_lua_block {
ngx.print('ready')
ngx.flush(true)
ngx.exit(ngx.HTTP_OK)
}
}