We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d88597b commit 623893aCopy full SHA for 623893a
condition-web/Dockerfile
@@ -6,7 +6,7 @@ FROM node:16-alpine as build-stage
6
WORKDIR /app
7
8
# Build argument for base path
9
-ARG VITE_APP_BASE_PATH=/conditions
+ARG VITE_APP_BASE_PATH=/condition
10
ENV VITE_APP_BASE_PATH=$VITE_APP_BASE_PATH
11
12
# add `/app/node_modules/.bin` to $PATH
condition-web/nginx/nginx.conf
@@ -56,10 +56,10 @@ http {
56
error_log /dev/stdout info;
57
access_log /dev/stdout;
58
59
- location /conditions {
+ location /condition {
60
alias /usr/share/nginx/html;
61
index index.html index.htm;
62
- try_files $uri $uri/ /conditions/index.html;
+ try_files $uri $uri/ /condition/index.html;
63
}
64
65
location / {
0 commit comments