nginx 转发请求到指定网站

Posted 那人,那事,那代码

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 转发请求到指定网站相关的知识,希望对你有一定的参考价值。

实现目的:

如果本地电脑访问某个网站比较慢,但是通过服务器访问就比较快,可以考虑使用nginx转发请求的方式.


server {
        listen 5555 default_server; # 指定你的服务器要监听的端口
        listen [::]:5555 default_server; # 指定监听端口
        server_name _;

        proxy_set_header X-Forwarded-Host $http_host;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header X-Real-IP $remote_addr;

        # rewrite ^(.*)$ https://www.odoo.com/;
            location / {
                proxy_pass https://www.odoo.com/; # 设置要转发的网址.
                proxy_set_header X-Forwarded-Host $http_host;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                client_max_body_size 20m;

  }

}

以上是关于nginx 转发请求到指定网站的主要内容,如果未能解决你的问题,请参考以下文章

nginx请求转发配置

nginx 转发请求到多台tomcat

Nginx转发TCP请求

nginx学习之反向代理

nginx1.9+做TCP代理(端口转发)

简单的nginx模拟网站的负载均衡