# MessageBox **Repository Path**: winnie_gss/MessageBox ## Basic Information - **Project Name**: MessageBox - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-08-22 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README nginx server { listen 80; server_name www.51pin.com ; location / { proxy_pass http://localhost:9002; } } server { listen 80; server_name www.51home.com ; location / { proxy_pass http://localhost:9001; } #当上游服务器响应头回来后,可以根据响应状态码的值进行拦截错误处理,与error_page 指令相互结合。用在访问上游服务器出现错误的情况下。 proxy_intercept_errors on; error_page 500 502 503 504 404 403 =200 /home; location = /home { proxy_set_header Host $host; proxy_pass http://localhost:9001/index; } }