Angular 使用 Nginx 和 docker-compose

Angular with Nginx and docker-compose

我正在尝试 运行 与 Docker 组成一个 angular 应用程序。这是我的 Docker 文件 Angular 容器

# Stage 0, for downloading project’s npm dependencies, building and compiling the app.
FROM node:14.13 as node

# set working directory
RUN mkdir /usr/src/app
WORKDIR /usr/src/app

# add .bin to $PATH
ENV PATH /usr/src/app/node_modules/.bin:$PATH

# install package.json (o sea las dependencies)
COPY package.json /usr/src/app/package.json
RUN npm install
RUN npm install -g @angular/cli@10.0.3 

# add app
COPY . /usr/src/app

# start app
CMD npm build-prod

# Stage 1, for copying the compiled app from the previous step and making it ready for production with Nginx
FROM nginx:alpine
COPY --from=node /usr/src/app/dist/bloomingfrontend /usr/share/nginx/html/
COPY nginx.conf /etc/nginx/conf.d/default.conf

docker-编写文件:

version: '3.3'

services:
  web: 
    build: './blooming_frontend'
    ports: 
      - 80:80
    depends_on:
      - spring
  spring:
    build: ./blooming_backend
    ports:
      - 8080:8080

和nginx.conf

server {

    server_name localhost;
    listen      80;
    root        /usr/share/nginx/html;
    index       index.html index.htm;

    location / {

        try_files $uri $uri/ /index.html;

    }

}

正如我在一些教程中所看到的那样,它可以正常工作,但是在访问 localhost 时抛出 本地主机页面已拒绝连接。

我是 Nginx 的新手,我不知道我必须做什么

在您的 nginx 配置中,localhost 匹配容器而不是主机(nginx 将只接受来自容器本身的连接)。 删除 server_name 行应该可以正常工作。