51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

nginx log 相关

nginx log

server {
	listen 8191;
	server_name uat.k8sdashu.cn;
        location / {
            proxy_pass http://192.168.1.209:31805;
            include proxy_params;
            proxy_http_version 1.1;
            proxy_set_header Upgrade $http_upgrade;
            proxy_set_header Connection "upgrade";
          }        

        error_page 502 503 /50x.html;
        location = /50x.html {
              root /usr/share/nginx/html;
         }

    access_log  /var/log/nginx/uat-cloudservice2.kattgatt.com.log;
    error_log  /var/log/nginx/uat-cloudservice2.kattgatt.com.error.log;

}
赞(0)
未经允许不得转载:工具盒子 » nginx log 相关