This commit is contained in:
vet
2026-04-14 11:55:51 +07:00
parent 3719d1fcaf
commit 11561c9775
2 changed files with 10 additions and 0 deletions

View File

@@ -18,12 +18,21 @@ map $http_upgrade $connection_upgrade {
'' close;
}
log_format openim_pc_gateway
'$remote_addr - $host [$time_local] "$request" status=$status bytes=$body_bytes_sent '
'upgrade="$http_upgrade" connection="$http_connection" '
'upstream="$upstream_addr" upstream_status="$upstream_status" '
'upstream_time="$upstream_response_time" request_time="$request_time" '
'referer="$http_referer" ua="$http_user_agent"';
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
client_max_body_size 100m;
access_log /var/log/nginx/openim-pc-proxy-access.log openim_pc_gateway;
error_log /var/log/nginx/openim-pc-proxy-error.log warn;
# 根路径:不托管前端;避免与其它站点抢 default_server 后仍误以为是 CMS
location = / {

View File

@@ -72,6 +72,7 @@ if command -v curl &>/dev/null && [[ -n "${PC_BACKEND_ORIGIN:-}" ]]; then
echo " PC Chat API: ${PC_VITE_CHAT_URL:-${PC_BACKEND_ORIGIN}/api/chat}"
echo " PC Admin API: ${PC_VITE_ADMIN_URL:-${PC_BACKEND_ORIGIN}/api/admin}"
echo " PC WebSocket: ${PC_VITE_WS_URL:-$default_ws_url}"
echo " Nginx 日志: /var/log/nginx/openim-pc-proxy-access.log"
pc_probe_msg_gateway "$PC_BACKEND_ORIGIN"
else
printf " ${YELLOW}${NC} %-14s %s\n" "nginx-health" "跳过(未安装 curl 或未设置 PC_BACKEND_ORIGIN"