nginx反向代理

时间:2017-04-27 09:41:11

标签: nginx docker reverse-proxy

我想在一个主机VM上运行多个docker容器,只能通过一个域访问它。我想使用请求网址来区分容器。     为了达到这个目的,我尝试将nginx服务器设置为反向代理,并在容器中运行它,同时监听端口80.

假设我有两个容器在端口3000和4000上运行。 路由将遵循:

docker-host.example.com/3000 -> this will access container exposing port 3000
docker-host.example.com/4000 -> this will access container exposing port 4000

即使尝试为这种反向代理定义静态规则,我目前仍在堆叠。 它没有任何位置工作正常:

upstream application {
    server <docker container>:3000;
}

server {
        listen 80;

        location / {
            proxy_pass_header  Server;
            proxy_set_header   Host $http_host;
            proxy_redirect     off;
            proxy_set_header   X-Real-IP $remote_addr;
            proxy_set_header   X-Scheme $scheme;
            proxy_pass         http://application/;
        }
}

但是当我添加端口位置并尝试使用localhost访问它时:{nginx port} / 3000 /

upstream application {
    server <docker container>:3000;
}

server {
        listen 80;

        location /3000/ {
            proxy_pass_header  Server;
            proxy_set_header   Host $http_host;
            proxy_redirect     off;
            proxy_set_header   X-Real-IP $remote_addr;
            proxy_set_header   X-Scheme $scheme;
            proxy_pass         http://application/3000/;
        }
}

似乎正确请求了第一个资源(主html),但缺少任何其他依赖资源(例如,此站点所需的js或css)。 如果我在日志中检查对这些资源的请求:

09:19:20 [error] 5#5: *1 open() "/etc/nginx/html/public/css/fonts.min.css" failed (2: No such file or directory), client: 172.17.0.1, server: , request: "GET /public/css/fonts.min.css HTTP/1.1", host: "localhost:8455", referrer:"http://localhost:8455/3000/"

因此请求网址为http://localhost:8455/public/css/fonts.min.css

而不是http://localhost:8455/3000/public/css/fonts.min.css

我可以问你任何建议吗?这种情况可能吗?

1 个答案:

答案 0 :(得分:3)

您可以为每个端口选择一个泊坞窗容器,例如:

但还有另一种方法,我更喜欢,因为我认为更清楚,可以通过域名访问docker容器,例如:

无论您选择哪个,github中都有一个项目可以帮助您实现docker多容器反向代理:https://github.com/jwilder/nginx-proxy

我在以下类似场景中使用docker-compose编写了一个示例:http://carlosvin.github.io/posts/reverse-proxy-multidomain-docker/