fix nginx routing

This commit is contained in:
MarcZierle 2022-10-31 12:50:17 +01:00
parent 0fb0eb8516
commit 26f5e4a431
2 changed files with 13 additions and 1 deletions

View File

@ -27,7 +27,11 @@ RUN npm run build
FROM nginx:1.23.2-alpine AS runner
# setup nginx
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
RUN addgroup -S www && adduser -S www -G www
# copy build files
COPY --from=builder /home/app/dist /usr/share/nginx/html
COPY --from=builder /home/app/dist /home/www/dist
RUN chown -R www:www /home/www/dist

8
nginx.conf Normal file
View File

@ -0,0 +1,8 @@
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /home/www/dist;
try_files $uri $uri/ /index.html;
}