mirror of
https://github.com/penpot/penpot.git
synced 2026-09-18 18:06:14 +00:00
🐳 Remove the configuration of the admin-console from Nginx if it is not enabled
This commit is contained in:
parent
83a3d099f6
commit
c16b7919f9
@ -25,6 +25,7 @@ COPY $BUNDLE_PATH /var/www/app/
|
|||||||
COPY ./files/config.js /var/www/app/js/config.js
|
COPY ./files/config.js /var/www/app/js/config.js
|
||||||
COPY ./files/nginx.conf.template /tmp/nginx.conf.template
|
COPY ./files/nginx.conf.template /tmp/nginx.conf.template
|
||||||
COPY ./files/nginx-resolvers.conf.template /tmp/resolvers.conf.template
|
COPY ./files/nginx-resolvers.conf.template /tmp/resolvers.conf.template
|
||||||
|
COPY ./files/nginx-admin-console-locations.conf.template /tmp/nginx-admin-console-locations.conf.template
|
||||||
COPY ./files/nginx-mcp-locations.conf.template /tmp/nginx-mcp-locations.conf.template
|
COPY ./files/nginx-mcp-locations.conf.template /tmp/nginx-mcp-locations.conf.template
|
||||||
COPY ./files/nginx-security-headers.conf /etc/nginx/nginx-security-headers.conf
|
COPY ./files/nginx-security-headers.conf /etc/nginx/nginx-security-headers.conf
|
||||||
COPY ./files/nginx-mime.types /etc/nginx/mime.types
|
COPY ./files/nginx-mime.types /etc/nginx/mime.types
|
||||||
|
|||||||
@ -0,0 +1,7 @@
|
|||||||
|
location /admin-console {
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Host $http_host;
|
||||||
|
proxy_set_header X-Real-IP $http_cf_connecting_ip;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_pass $PENPOT_ADMIN_CONSOLE_URI$request_uri;
|
||||||
|
}
|
||||||
@ -53,15 +53,22 @@ update_oidc_name /var/www/app/js/config.js
|
|||||||
|
|
||||||
export PENPOT_BACKEND_URI=${PENPOT_BACKEND_URI:-http://penpot-backend:6060}
|
export PENPOT_BACKEND_URI=${PENPOT_BACKEND_URI:-http://penpot-backend:6060}
|
||||||
export PENPOT_EXPORTER_URI=${PENPOT_EXPORTER_URI:-http://penpot-exporter:6061}
|
export PENPOT_EXPORTER_URI=${PENPOT_EXPORTER_URI:-http://penpot-exporter:6061}
|
||||||
export PENPOT_ADMIN_CONSOLE_URI=${PENPOT_ADMIN_CONSOLE_URI:-http://penpot-nitrate:3000}
|
|
||||||
export PENPOT_HTTP_SERVER_MAX_BODY_SIZE=${PENPOT_HTTP_SERVER_MAX_BODY_SIZE:-367001600} # Default to 350MiB
|
export PENPOT_HTTP_SERVER_MAX_BODY_SIZE=${PENPOT_HTTP_SERVER_MAX_BODY_SIZE:-367001600} # Default to 350MiB
|
||||||
export PENPOT_IPV6_LISTEN_DIRECTIVE=${PENPOT_IPV6_LISTEN_DIRECTIVE:-"listen [::]:8080 default_server reuseport backlog=16384;"}
|
export PENPOT_IPV6_LISTEN_DIRECTIVE=${PENPOT_IPV6_LISTEN_DIRECTIVE:-"listen [::]:8080 default_server reuseport backlog=16384;"}
|
||||||
if is_truthy "${PENPOT_DISABLE_IPV6_LISTEN:-}"; then
|
if is_truthy "${PENPOT_DISABLE_IPV6_LISTEN:-}"; then
|
||||||
export PENPOT_IPV6_LISTEN_DIRECTIVE=""
|
export PENPOT_IPV6_LISTEN_DIRECTIVE=""
|
||||||
fi
|
fi
|
||||||
envsubst "\$PENPOT_BACKEND_URI,\$PENPOT_EXPORTER_URI,\$PENPOT_ADMIN_CONSOLE_URI,\$PENPOT_HTTP_SERVER_MAX_BODY_SIZE,\$PENPOT_IPV6_LISTEN_DIRECTIVE" \
|
envsubst "\$PENPOT_BACKEND_URI,\$PENPOT_EXPORTER_URI,\$PENPOT_HTTP_SERVER_MAX_BODY_SIZE,\$PENPOT_IPV6_LISTEN_DIRECTIVE" \
|
||||||
< /tmp/nginx.conf.template > /etc/nginx/nginx.conf
|
< /tmp/nginx.conf.template > /etc/nginx/nginx.conf
|
||||||
|
|
||||||
|
if [[ $PENPOT_FLAGS == *"enable-admin-console"* ]]; then
|
||||||
|
export PENPOT_ADMIN_CONSOLE_URI=${PENPOT_ADMIN_CONSOLE_URI:-http://penpot-admin-console:3000}
|
||||||
|
envsubst "\$PENPOT_ADMIN_CONSOLE_URI" \
|
||||||
|
< /tmp/nginx-admin-console-locations.conf.template > /etc/nginx/overrides/server.d/admin-console-locations.conf
|
||||||
|
else
|
||||||
|
rm -f /etc/nginx/overrides/server.d/admin-console-locations.conf
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ $PENPOT_FLAGS == *"enable-mcp"* ]]; then
|
if [[ $PENPOT_FLAGS == *"enable-mcp"* ]]; then
|
||||||
export PENPOT_MCP_URI=${PENPOT_MCP_URI:-http://penpot-mcp:4401}
|
export PENPOT_MCP_URI=${PENPOT_MCP_URI:-http://penpot-mcp:4401}
|
||||||
export PENPOT_MCP_URI_WS=${PENPOT_MCP_URI_WS:-http://penpot-mcp:4402}
|
export PENPOT_MCP_URI_WS=${PENPOT_MCP_URI_WS:-http://penpot-mcp:4402}
|
||||||
|
|||||||
@ -151,14 +151,6 @@ http {
|
|||||||
proxy_pass $PENPOT_BACKEND_URI/ws/notifications;
|
proxy_pass $PENPOT_BACKEND_URI/ws/notifications;
|
||||||
}
|
}
|
||||||
|
|
||||||
location /admin-console {
|
|
||||||
proxy_http_version 1.1;
|
|
||||||
proxy_set_header Host $http_host;
|
|
||||||
proxy_set_header X-Real-IP $http_cf_connecting_ip;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_pass $PENPOT_ADMIN_CONSOLE_URI$request_uri;
|
|
||||||
}
|
|
||||||
|
|
||||||
include /etc/nginx/overrides/server.d/*.conf;
|
include /etc/nginx/overrides/server.d/*.conf;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user