Merge remote-tracking branch 'sac/ca_router' into sac_ca_router
All checks were successful
Build and Push Docker Image / build (push) Successful in 6m39s

This commit is contained in:
BertrandC 2025-05-21 13:55:39 +08:00
commit e116552b90
2 changed files with 1 additions and 10 deletions

View File

@ -7,7 +7,7 @@ RUN npm install --registry=https://registry.npmmirror.com && npm run build:stag
FROM registry.zsmarter.com/public/nginx:1.22.1 FROM registry.zsmarter.com/public/nginx:1.22.1
COPY --from=builder /app/dist /app/nginx/html COPY --from=builder /app/dist /app/nginx/html
COPY --from=builder /app/sf-ui/nginx.conf /etc/nginx/nginx.conf COPY --from=builder /app/nginx.conf /etc/nginx/nginx.conf
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories

View File

@ -1,4 +1,3 @@
worker_processes 1; worker_processes 1;
events { events {
@ -29,14 +28,6 @@ http {
rewrite ^.*$ /index.html last; rewrite ^.*$ /index.html last;
} }
location /stage-api/ {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://zt-sac-java:7781/;
}
error_page 500 502 503 504 /50x.html; error_page 500 502 503 504 /50x.html;
location = /50x.html { location = /50x.html {
root html; root html;