File tree Expand file tree Collapse file tree 2 files changed +64
-21
lines changed
Expand file tree Collapse file tree 2 files changed +64
-21
lines changed Original file line number Diff line number Diff line change 1- FROM node:20-alpine AS dependencies-env
1+ # 建置階段
2+ FROM node:20-alpine AS build
23RUN npm i -g pnpm
3- COPY . /app
4-
5- FROM dependencies-env AS development-dependencies-env
6- COPY ./package.json pnpm-lock.yaml /app/
74WORKDIR /app
5+ COPY package.json pnpm-lock.yaml ./
86RUN pnpm i --frozen-lockfile
9-
10- FROM dependencies-env AS production-dependencies-env
11- COPY ./package.json pnpm-lock.yaml /app/
12- WORKDIR /app
13- RUN pnpm i --prod --frozen-lockfile
14-
15- FROM dependencies-env AS build-env
16- COPY ./package.json pnpm-lock.yaml /app/
17- COPY --from=development-dependencies-env /app/node_modules /app/node_modules
18- WORKDIR /app
7+ COPY . .
8+ ARG VITE_APP_API_URL
9+ ENV VITE_APP_API_URL=${VITE_APP_API_URL}
1910RUN pnpm build
2011
21- FROM dependencies-env
22- COPY ./package.json pnpm-lock.yaml /app/
23- COPY --from=production-dependencies-env /app/node_modules /app/node_modules
24- COPY --from=build-env /app/build /app/build
25- WORKDIR /app
26- CMD ["pnpm" , "start" ]
12+ # 運行階段
13+ FROM nginx:alpine
14+ # 複製檔案
15+ COPY --from=build /app/build/client /usr/share/nginx/html/
16+ # 複製 nginx 設定檔
17+ COPY nginx.conf /etc/nginx/templates/default.conf.template
18+ # 建立日誌目錄
19+ RUN mkdir -p /var/log/nginx
20+ # 使用 envsubst 來替換環境變數
21+ CMD ["/bin/sh" , "-c" , "envsubst '${VITE_APP_API_URL}' < /etc/nginx/templates/default.conf.template > /etc/nginx/conf.d/default.conf && nginx -g 'daemon off;'" ]
Original file line number Diff line number Diff line change 1+ server {
2+ listen 80 ;
3+ include /etc/nginx/mime.types ;
4+
5+ root /usr/share/nginx/html;
6+ index index .html;
7+
8+ # API Proxy 設定
9+ location /v2/ {
10+ # 確保 proxy_pass 以斜線結尾
11+ proxy_pass ${ VITE_APP_API_URL} /;
12+
13+ # 基本代理設定
14+ proxy_http_version 1.1;
15+ proxy_set_header Host $host ;
16+ proxy_set_header X-Real-IP $remote_addr ;
17+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for ;
18+ proxy_set_header X-Forwarded-Proto $scheme ;
19+
20+ # 增加超時設定
21+ proxy_connect_timeout 60 ;
22+ proxy_send_timeout 60 ;
23+ proxy_read_timeout 60 ;
24+
25+ # 除錯用日誌
26+ access_log /var/log/nginx/api_access.log;
27+ error_log /var/log/nginx/api_error.log debug;
28+ }
29+
30+ # 其他設定保持不變
31+ location /react-main-2024 -w2 {
32+ alias /usr/share/nginx/html;
33+ try_files $uri $uri / /index .html;
34+
35+ location ~ \.js$ {
36+ add_header Content-Type "application/javascript" ;
37+ }
38+ }
39+
40+ location /react-main-2024 -w2/assets/ {
41+ alias /usr/share/nginx/html/assets/;
42+ add_header Cache-Control "public, max-age=31536000, immutable" ;
43+ }
44+
45+ location = / {
46+ return 301 /react-main-2024 -w2/;
47+ }
48+ }
You can’t perform that action at this time.
0 commit comments