gpt4 book ai didi

nginx - nginx 反向代理可访问多个 docker 容器

转载 作者:行者123 更新时间:2023-12-02 18:03:21 24 4
gpt4 key购买 nike

我想在一个只能通过一个域访问的主机 VM 上运行多个 docker 容器。我想使用请求 url 来区分容器。
为了实现这一点,我试图将 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/"

所以请求 url 是 http://localhost:8455/public/css/fonts.min.css

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

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

最佳答案

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

  • http://example.com:4000/css/fonts.min.css
  • http://example.com:3000/css/fonts.min.css

  • 但是我更喜欢另一种方法,因为我认为它更清晰,通过域名访问 docker 容器,例如:
  • http://a.example.com/css/fonts.min.css
  • http://b.example.com/css/fonts.min.css

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

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

    关于nginx - nginx 反向代理可访问多个 docker 容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43654135/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com