diff --git a/alpine/5/Dockerfile b/alpine/5/Dockerfile index e656ece..4f0ccbf 100644 --- a/alpine/5/Dockerfile +++ b/alpine/5/Dockerfile @@ -83,8 +83,6 @@ ENV BAK_STORAGE_PATH $BAK_STORAGE_PATH ENV BAK_PUBLIC_PATH $BAK_PUBLIC_PATH COPY --from=nodebuild --chown=$INVOICENINJA_USER:$INVOICENINJA_USER /var/www/app /var/www/app -RUN rm -f /var/www/app/public/main.* -RUN rm -f /var/www/app/public/flutter* RUN rm -rf /var/www/app/ui USER $UID diff --git a/config/nginx/in-vhost.conf b/config/nginx/in-vhost.conf index b6e2a6c..cf262f7 100644 --- a/config/nginx/in-vhost.conf +++ b/config/nginx/in-vhost.conf @@ -7,7 +7,7 @@ server { client_max_body_size 100M; root /var/www/app/public/; - index index.html index.htm index.php; + index index.php; location / { try_files $uri $uri/ /index.php?$query_string;