nginx 配置间接监控 udp 负载均衡健康检查 1.nginx 搭建 2.nginx.conf 文件的配置 user root; worker_processes 1; error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 1024; } http { server { listen 80; # status interface location /status { healthcheck_status h…