From 830b2a63bebd3a74c87b99ac45a71354e992f56a Mon Sep 17 00:00:00 2001 From: Thomas Date: Wed, 26 Feb 2025 12:33:20 +0100 Subject: [PATCH] Fixes --- .docker/images/nginx/Dockerfile | 2 +- .docker/images/nginx/conf.d/default.conf | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.docker/images/nginx/Dockerfile b/.docker/images/nginx/Dockerfile index eaaa33f23..80a2ce533 100644 --- a/.docker/images/nginx/Dockerfile +++ b/.docker/images/nginx/Dockerfile @@ -10,7 +10,7 @@ RUN sed -i "s#__NGINX_ROOT_OLD;#$APP_CODE_PATH/old/public;#" /etc/nginx/conf.d/d COPY ./src/old/public /data/www/old/public COPY ./src/new/var/plugins/System /data/www/new/var/plugins/System COPY ./src/new/web /data/www/new/web -COPY ./src/new/vendor/nelmio/api-doc-bundle/Resources/public /data/www/new/vendor/nelmio/api-doc-bundle/Resources/public +COPY ./src/new/vendor/nelmi[o]/api-doc-bundle/Resources/public /data/www/new/vendor/nelmio/api-doc-bundle/Resources/public FROM base as prod diff --git a/.docker/images/nginx/conf.d/default.conf b/.docker/images/nginx/conf.d/default.conf index efe60946b..c1d4a77dc 100644 --- a/.docker/images/nginx/conf.d/default.conf +++ b/.docker/images/nginx/conf.d/default.conf @@ -57,6 +57,12 @@ server { rewrite ^(.*) /index.php last; } + location /w2p/ { + proxy_pass http://tp:8080/w2p/; + proxy_temp_path /tmp/proxy; + } + + location /apps/ { # Static files client_max_body_size 1024M; root $frontRoot;