mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
9 lines
165 B
Text
9 lines
165 B
Text
|
|
location /ready {
|
||
|
|
default_type 'text/plain';
|
||
|
|
rewrite_by_lua_block {
|
||
|
|
ngx.print('ready')
|
||
|
|
ngx.flush(true)
|
||
|
|
ngx.exit(ngx.HTTP_OK)
|
||
|
|
}
|
||
|
|
}
|