nginx template fix
This commit is contained in:
@@ -9,6 +9,7 @@ RUN npm run build
|
||||
# Stage 2: Serve
|
||||
FROM nginx:alpine
|
||||
COPY --from=build-stage /app/dist /usr/share/nginx/html
|
||||
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
||||
COPY default.conf.template /etc/nginx/templates/default.conf.template
|
||||
EXPOSE 80
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
||||
|
||||
|
||||
29
APP_UI/default.conf.template
Normal file
29
APP_UI/default.conf.template
Normal file
@@ -0,0 +1,29 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name localhost;
|
||||
|
||||
root /usr/share/nginx/html;
|
||||
index index.html;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
|
||||
# Proxy API requests
|
||||
location /api/v1/ {
|
||||
proxy_pass http://${OVP_API_HOST}:${OVP_API_PORT};
|
||||
}
|
||||
|
||||
location /api/auth {
|
||||
proxy_pass http://${OVP_API_HOST}:${OVP_API_PORT};
|
||||
}
|
||||
|
||||
location /api/ {
|
||||
proxy_pass http://${OVP_PROFILER_HOST}:${OVP_PROFILER_PORT};
|
||||
}
|
||||
|
||||
error_page 500 502 503 504 /50x.html;
|
||||
location = /50x.html {
|
||||
root /usr/share/nginx/html;
|
||||
}
|
||||
}
|
||||
@@ -1,25 +0,0 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name localhost;
|
||||
|
||||
root /usr/share/nginx/html;
|
||||
index index.html;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
|
||||
# Proxy API requests if needed or let the frontend handle URLs
|
||||
# location /api/v1/ {
|
||||
# proxy_pass http://app-api:5001;
|
||||
# }
|
||||
|
||||
# location /api/ {
|
||||
# proxy_pass http://app-profiler:8000;
|
||||
# }
|
||||
|
||||
error_page 500 502 503 504 /50x.html;
|
||||
location = /50x.html {
|
||||
root /usr/share/nginx/html;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user