nginx 反向代理 golang web

来源:互联网 发布:自动化编程软件有哪些 编辑:程序博客网 时间:2024/05/16 00:36

     现有两个Golang Web服务程序: web1(8080), web2(8081), 两个域名:www.xxxxx.com,www.yyyy.com 

    在一台机器上,使xxxxx.com 解析到 8080端口,yyyy.com解析到8081端口

    使用nginx进行反向代理的方法:

    一、在nginx配置文件中,添加如下配置

         server{

listen 80;

server_name  www.xxxxx.com xxxxx.com;

location /{

try_files /_not_exists @backend;

}

location @backend{

proxy_set_header X-Forwarded-For $remote_addr;

proxy_set_header Host            $http_host;

proxy_pass  http://localhost:8080;

}

}

        域名xxxxx.com,www.xxxxx.com即可解析到服务器 8080端口

       server{

listen 80;

server_name  www.yyyy.com yyyy.com;

location /{

try_files /_not_exists @backend;

}

location @backend{

proxy_set_header X-Forwarded-For $remote_addr;

proxy_set_header Host            $http_host;

proxy_pass  http://localhost:8081;

}

}

        域名yyyy.com,www.yyyy.com即可解析到服务器 8081端口。

0 0