remove default.conf

This commit is contained in:
Marco Zeisler 2021-05-04 21:49:24 +02:00
parent c629988bbf
commit c7bbafd94e
2 changed files with 0 additions and 12 deletions

View File

@ -13,7 +13,5 @@ RUN npm ci && npm run build
FROM nginx:alpine
COPY --from=build-image /app/dist/app-fe /usr/share/nginx/html
COPY ./nginx/conf.d/default.conf /etc/nginx/default.conf
RUN nginx -s reload
EXPOSE 80

View File

@ -1,10 +0,0 @@
server {
listen 80;
listen [::]:80;
server_name localhost;
location / {
try_files $uri $uri/ /index.html;
}
}