Skip to content

Commit

Permalink
fixed the app name issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jagankumar-egov authored Jul 16, 2024
1 parent a9d8728 commit 21234de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion micro-ui/web/packages/ui/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ RUN yarn build

FROM nginx:mainline-alpine

ENV WORK_DIR=/var/web/ui-core-mfe
ENV WORK_DIR=/var/web/ui

RUN mkdir -p ${WORK_DIR}

Expand Down
4 changes: 2 additions & 2 deletions micro-ui/web/packages/ui/docker/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ server
listen 80;
underscores_in_headers on;

location /ui-core-mfe
location /ui
{
root /var/web;
index index.html index.htm;
try_files $uri $uri/ /ui-core-mfe/index.html;
try_files $uri $uri/ /ui/index.html;
}
}

0 comments on commit 21234de

Please sign in to comment.