主机未找到在上游与nginx docker组成

rnmwe5a2  于 2023-06-05  发布在  Nginx
关注(0)|答案(2)|浏览(179)

我知道这个问题已经被问过很多次了,但是没有一个解决方案对我有效。
我正在尝试使用nginx将我的angular应用程序和node js后端码头化。
我所做的是创建一个docker-compose文件。它有三个服务和nginx。
1:空间前端
2:空间API
3:mongodb
我调用前端和后端的服务名称在nginx的配置文件,如http://space-frontend:80和http://space-api:3000,但我在日志中得到一个错误
[emerg] 1#1:/etc/nginx/nginx.conf中的上游“space-api”中未找到主机:23
前端工作正常我不知道我在哪里错过了什么。
我的前端docker文件

FROM node:16-alpine AS builder
WORKDIR /app
COPY . .
RUN npm i && npm run build --prod
FROM nginx:alpine
RUN mkdir /app
COPY --from=builder /app/dist/Space-Locator/browser /app
COPY nginx.conf /etc/nginx/nginx.conf

我的前端nginx配置

events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;

server {
listen       80;
server_name  localhost;
root /app;

location / {
    index  index.html;
    try_files $uri $uri/ /index.html;
}

error_page   500 502 503 504  /50x.html;
location = /50x.html {
    root   /usr/share/nginx/html;
}
}
}

后端API docker文件

FROM node:14-alpine as build-step
RUN mkdir -p /usr/app
WORKDIR /usr/app
COPY package.*json /usr/app/
RUN npm install
COPY . /usr/app/
EXPOSE 3000
CMD [ "npm", "start" ]

我的docker-compose文件

version: "3.8"
services:
  reverse_proxy:
    image: nginx:1.17.10
    container_name: reverse_proxy
    depends_on:
      - space-frontend
      - space-api
      - database
    volumes:
      - ./reverse_proxy/nginx.conf:/etc/nginx/nginx.conf  
    ports:
      - 80:80
  space-frontend:
    container_name: space-frontend
    image: space-frontend
    build: 
      context: ./space-frontend
    ports:
      - 4000:80
  space-api:
    container_name: space-api
    hostname: space-api
    image: space-api
    build: 
      context: ./space-api
    ports:
      - 3000:3000
    links:
      - database  
    environment:
      MONGO_INITDB_DATABASE: spaceLocator 
      MONGODB_URI: mongodb://db:27017
    depends_on:
      - database
    volumes:
      - ./db-data/mongo/:/data/database
    networks:
      - node-network
  database:
    container_name: db
    image: mongo
    restart: on-failure
    ports:
      - 27017:27017
    volumes:
      - ./mongodb:/data/database
    networks:
      - node-network  
volumes:
  dbdata6:
networks:
  node-network:
    external: true
    driver: bridge

我的nginx.conf文件用于反向代理

events {
    worker_connections 1024;
}
http {

  server {
        listen 80;
        server_name  127.0.0.1;

        root   /usr/share/nginx/html;
        index  index.html index.htm;
        
        location ~* \.(eot|ttf|woff|woff2)$ {
        add_header Access-Control-Allow-Origin *;
        }

        location / {
          proxy_pass http://space-frontend:80;
          proxy_set_header X-Forwarded-For $remote_addr;
        }

        location /api {
            proxy_pass http://space-api:3000;
            proxy_set_header X-Forwarded-For $remote_addr;
        }
    }
}

有人能指出我哪里做错了吗?我尝试添加主机名,但它们与container-name相同。

ecbunoof

ecbunoof1#

你需要告诉nginx使用dockers DNS解析器,使用nginx.conf中的resolver关键字。就像这样:

load_module modules/ngx_http_js_module.so;

worker_processes 4;

events { worker_connections 1024; }

http {
    js_import index.js;

    resolver 127.0.0.11 ipv6=off;

不要认为你的工作已经完成了-在Kubernetes上,你用kube-dns.kube-system.svc.cluster.local替换了127.0.0.11

zysjyyx4

zysjyyx42#

因此,问题是我们必须在同一网络上运行每个容器。

networks:

  - node-network

我必须在我的每一个服务中定义它。然后它运行没有任何问题。谢谢大家的帮助:)

相关问题