From 66ef729d9bfbe259b4453942d6a1411b098f7d7d Mon Sep 17 00:00:00 2001 From: Thomas <51749973+Thovi98@users.noreply.github.com> Date: Wed, 13 Dec 2023 20:27:59 +0100 Subject: [PATCH] fix embed.html --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 13f07c6..e177f60 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -43,7 +43,7 @@ } location ~ "/(front/)?embed.html" { - alias __INSTALL_DIR__/front/dist/;embed.html; + alias __INSTALL_DIR__/front/dist/embed.html; more_set_headers "Content-Security-Policy: connect-src https: http: 'self'; default-src 'self'; script-src 'self' unpkg.com 'unsafe-inline' 'unsafe-eval'; style-src https: http: 'self' 'unsafe-inline'; img-src https: http: 'self' data:; font-src https: http: 'self' data:; object-src 'none'; media-src https: http: 'self' data:"; more_set_headers "Referrer-Policy: strict-origin-when-cross-origin";