美文网首页
nginx 设置浏览器代理服务器

nginx 设置浏览器代理服务器

作者: totzcc | 来源:发表于2017-08-10 11:00 被阅读46次

    nginx 设置浏览器代理服务器

    server {
        listen 88;
        location / {
            proxy_pass $scheme://$http_host$request_uri;
            proxy_set_header Host $host;
            #proxy_pass proxy_pass http://$http_host$request_uri;
        }
        resolver 8.8.8.8;
    }
    

    相关文章

      网友评论

          本文标题:nginx 设置浏览器代理服务器

          本文链接:https://www.haomeiwen.com/subject/pathrxtx.html