fix: Plane-App not taking correct env for plane-deploy url

This commit is contained in:
Henit Chobisa 2023-08-22 09:14:44 +00:00
parent b406a70e72
commit 82cc1f0ed8
3 changed files with 8 additions and 8 deletions

View File

@ -55,7 +55,8 @@ COPY --from=installer --chown=captain:plane /app/apps/app/.next ./apps/app/.next
ARG NEXT_PUBLIC_API_BASE_URL=http://localhost:8000
ENV NEXT_PUBLIC_API_BASE_URL=$NEXT_PUBLIC_API_BASE_URL \
BUILT_NEXT_PUBLIC_API_BASE_URL=$NEXT_PUBLIC_API_BASE_URL
BUILT_NEXT_PUBLIC_API_BASE_URL=$NEXT_PUBLIC_API_BASE_URL \
NEXT_PUBLIC_DEPLOY_URL=$NEXT_PUBLIC_DEPLOY_URL
USER root
COPY replace-env-vars.sh /usr/local/bin/

View File

@ -51,7 +51,7 @@ COPY --from=installer /app/apps/space/package.json .
# https://nextjs.org/docs/advanced-features/output-file-tracing
COPY --from=installer --chown=captain:plane /app/apps/space/.next/standalone ./
COPY --from=installer --chown=captain:plane /app/apps/space/.next ./apps/space/.next
COPY --from=installer --chown=captain:plane /app/apps/space/.next/static ./apps/space/.next/static
ARG NEXT_PUBLIC_API_BASE_URL=http://localhost:8000
ENV NEXT_PUBLIC_API_BASE_URL=$NEXT_PUBLIC_API_BASE_URL \
@ -62,9 +62,5 @@ COPY replace-env-vars.sh /usr/local/bin/
COPY start.sh /usr/local/bin/
RUN chmod +x /usr/local/bin/replace-env-vars.sh
RUN chmod +x /usr/local/bin/start.sh
USER captain
ENV NEXT_TELEMETRY_DISABLED 1
EXPOSE 3000
ENV NEXT_TELEMETRY_DISABLED 1

View File

@ -16,7 +16,10 @@ server {
}
location /spaces/ {
proxy_pass http://planedeploy:3000/;
rewrite ^/spaces/(.*)$ /$1 break;
proxy_pass http://planedeploy:4000/;
sub_filter 'http://localhost/_next/static/' 'http://localhost/spaces/_next/static/';
sub_filter_once off;
}
location /api/ {