Skip to content

Commit daf91a7

Browse files
author
dodo
committed
Add proxy for nginx
1 parent 8a06b85 commit daf91a7

File tree

3 files changed

+28
-10
lines changed

3 files changed

+28
-10
lines changed

Dockerfile

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,20 @@
22
FROM node:14.7.0-alpine3.10 as build-stage
33
WORKDIR /app
44
COPY package*.json ./
5-
#CMD ["npm", "install"]
65
RUN npm install
76
COPY . .
7+
EXPOSE 3000
88
RUN npm run build
9+
#CMD ["npm", "run", "dev"]
910

1011
#production
1112
FROM nginx:1.19.1-alpine as production-stage
13+
14+
RUN rm -rf /etc/nginx/conf.d/default.conf
15+
COPY --from=build-stage /app/nginx/default.conf /etc/nginx/conf.d/default.conf
16+
17+
RUN rm -rf /usr/share/nginx/html/*
1218
COPY --from=build-stage /app/dist /usr/share/nginx/html
19+
1320
EXPOSE 3000
1421
CMD [ "nginx", "-g", "daemon off;" ]

nginx/default.conf

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
server {
2+
listen 3000;
3+
server_name localhost;
4+
5+
location /api {
6+
proxy_pass "http://code.mju-rats.com-be:8888";
7+
proxy_http_version 1.1;
8+
}
9+
10+
location / {
11+
root /usr/share/nginx/html;
12+
index index.html index.htm;
13+
try_files $uri $uri/ /index.html;
14+
}
15+
16+
error_page 500 502 503 504 /50x.html;
17+
location = /50x.html {
18+
root /usr/share/nginx/html;
19+
}
20+
}

nginx/nginx.conf

-9
This file was deleted.

0 commit comments

Comments
 (0)