美文网首页
Nginx配置正向代理

Nginx配置正向代理

作者: 袁先生的笔记 | 来源:发表于2017-04-28 10:12 被阅读0次

    nginx安装

    参见:http://www.jianshu.com/p/affac5f2d56e

    nginx配置正向代理

    • 配置/etc/nginx/nginx.conf,在http块中添加
    http {
    ......
        include /etc/nginx/conf.d/*.conf;
    }
    
    • 编写/etc/nginx/conf.d/http-proxy.conf
    server {
        resolver 114.114.114.114;
        resolver_timeout 10s;
        listen 8000;
    
        location / {
            proxy_pass $scheme://$host$request_uri;
            proxy_set_header Host $http_host;
        }
    
        access_log  /var/log/nginx/access-http-proxy.log main;
    }
    
    • 检测配置并重启nginx
    # nginx -t
    # /etc/init.d/nginx restart
    

    相关文章

      网友评论

          本文标题:Nginx配置正向代理

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