소스 검색

🔥: remove useless nginx config

master
Adrien 3 년 전
부모
커밋
cfadadac5f
2개의 변경된 파일2개의 추가작업 그리고 14개의 파일을 삭제
  1. +2
    -5
      Dockerfile.production
  2. +0
    -9
      config/docker/nginx.conf

+ 2
- 5
Dockerfile.production 파일 보기

@@ -7,8 +7,5 @@ COPY . .
RUN yarn build

FROM nginx:1.17.9-alpine as production-stage
RUN mkdir /app
COPY --from=build-stage /app/dist /app
RUN rm /etc/nginx/conf.d/default.conf
COPY config/docker/nginx.conf /etc/nginx/conf.d/nexus-timers.conf

WORKDIR /usr/share/nginx/html
COPY --from=build-stage /app/dist .

+ 0
- 9
config/docker/nginx.conf 파일 보기

@@ -1,9 +0,0 @@
server {
listen 80;
root /app;


access_log /var/log/nginx/nexus-timers.access.log;
error_log /var/log/nginx/nexus-timers.error.log;

}

불러오는 중...
취소
저장