bunkerweb/tests/core/backup/ready.conf
2024-04-04 17:11:52 +01:00

8 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)
}
}