From 8517ce3ed0bf04689339c9dedd624b97b99d9445 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?U=CD=8A=CC=85=CC=8A=CC=9A=CD=A2=CC=99=CD=9C=CC=ABn=CC=A4?= =?UTF-8?q?=CD=A8=CC=A8=CC=90=CC=99=CC=B0=CC=A0=CC=9Ci=CC=B5=CD=82=CC=BE?= =?UTF-8?q?=CC=B4=CC=B0=CC=9C=CC=B2=CC=96c=CD=A4=CC=8D=CC=8C=CC=83=CC=A1?= =?UTF-8?q?=CD=95=CD=9B=CC=AEo=CC=B1=CC=B3=CC=BD=CD=85=CD=99=CC=B9=CD=9D?= =?UTF-8?q?=CD=93d=CC=AD=CC=8C=CC=9C=CD=AE=CD=9B=CC=A0=CC=BA=CD=86e=CC=A6?= =?UTF-8?q?=CC=94=CC=AC=CC=A4=CC=B0=CC=A6=CC=99=CD=9E=20A=CC=A7=CC=BE?= =?UTF-8?q?=CC=82=CC=81=CD=9A=CD=88=CC=99=CD=9Bp=CC=86=CC=A2=CD=A3=CC=A8?= =?UTF-8?q?=CC=A9=CC=A3=CC=AC=CC=99o=CC=8A=CC=81=CC=A3=CC=BD=CD=9A=CC=A8?= =?UTF-8?q?=CD=95=CC=A9c=CC=90=CC=87=CD=AB=CD=97=CD=88=CC=A7=CC=AD=CD=9Ca?= =?UTF-8?q?=CC=89=CC=9B=CC=89=CC=82=CC=AA=CC=96=CC=9C=CC=97l=CC=AD=CC=BC?= =?UTF-8?q?=CC=BD=CC=B6=CD=85=CC=9F=CC=AE=CC=9Cy=CC=B5=CD=84=CC=8B=CC=8D?= =?UTF-8?q?=CC=9C=CC=A2=CC=9F=CD=99p=CD=A6=CC=AE=CC=87=CC=AE=CD=9B=CC=AD?= =?UTF-8?q?=CC=98=CD=9As=CC=A4=CC=A1=CC=85=CD=81=CD=9C=CC=AB=CC=BA=CD=94e?= =?UTF-8?q?=CC=A5=CD=80=CC=93=CC=93=CC=A7=CC=A2=CC=B1=CC=A4?= <64479312+UnicodeApocalypse@users.noreply.github.com> Date: Sun, 21 Apr 2024 17:38:48 +0200 Subject: [PATCH] Fix palette catalog not loading Adding https://catalogue.nodered.org/ to connect-src allowed hosts --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 02d4d9e..b1dfcde 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -12,7 +12,7 @@ location ^~ __PATH__/ { proxy_set_header Connection "Upgrade"; # Enable websockets (see: https://github.com/YunoHost-Apps/nodered_ynh/issues/78 ) - more_set_headers "Content-Security-Policy : upgrade-insecure-requests; default-src https: data: blob: ; connect-src 'self' wss://$host; object-src https: data: 'unsafe-inline'; style-src https: data: 'unsafe-inline' ; script-src https: data: 'unsafe-inline' 'unsafe-eval'; worker-src 'self' blob:;"; + more_set_headers "Content-Security-Policy : upgrade-insecure-requests; default-src https: data: blob: ; connect-src 'self' wss://$host https://catalogue.nodered.org/; object-src https: data: 'unsafe-inline'; style-src https: data: 'unsafe-inline' ; script-src https: data: 'unsafe-inline' 'unsafe-eval'; worker-src 'self' blob:;"; # Include SSOWAT user panel. include conf.d/yunohost_panel.conf.inc;