【转载】windows 开启 nginx 监听80 端口 以及 禁用 http 服务后,无法重启 HTTP 服务,提示 系统错误 123,文件目录、卷标出错

https://www.cnblogs.com/TianyuSu/p/9509873.html

location / {
proxy_set_header Host $Host;
proxy_set_header X-Forward-For $remote_addr;
proxy_pass http://127.0.0.1:8084/;
}



location /all{
proxy_set_header Host $Host;
proxy_set_header X-Forward-For $remote_addr;
proxy_pass http://127.0.0.1:8600/all;
}

猜你喜欢

转载自www.cnblogs.com/wbl001/p/11669283.html