Nginx 反向代理失败,求解答
发布于 7 个月前 作者 chinahsj 760 次浏览 来自 问答

访问 localhost/apis/ 404。 Nginx 配置

server {
    listen       80;  #监听80端口
    server_name  localhost; #当前服务的域名

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    location / {
        root   html;
        index  index.html index.htm;
    }
	
	location /apis/ {			
        proxy_pass https://www.baidu.com/;
    }

}

回到顶部