外观
健康检查
约 34 字小于 1 分钟
2025-09-07
server {
listen 80;
# 健康检查端点
location /health {
access_log off;
return 200 "OK";
add_header Content-Type text/plain;
}
}
外观
约 34 字小于 1 分钟
2025-09-07
server {
listen 80;
# 健康检查端点
location /health {
access_log off;
return 200 "OK";
add_header Content-Type text/plain;
}
}