From 1b3c2a43bf5c0aa7505529286139bdb04aa73b43 Mon Sep 17 00:00:00 2001 From: ansuz Date: Mon, 6 Jan 2020 15:22:55 -0500 Subject: [PATCH] remove wss from connecSrc in example nginx config --- docs/example.nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/example.nginx.conf b/docs/example.nginx.conf index da61ce42e..02f233735 100644 --- a/docs/example.nginx.conf +++ b/docs/example.nginx.conf @@ -72,7 +72,7 @@ server { set $styleSrc "'unsafe-inline' 'self' ${main_domain}"; # connect-src restricts URLs which can be loaded using script interfaces - set $connectSrc "'self' https://${main_domain} wss://${main_domain} $main_domain https://${api_domain} blob:"; + set $connectSrc "'self' https://${main_domain} $main_domain https://${api_domain} blob:"; # fonts can be loaded from data-URLs or the main domain set $fontSrc "'self' data: ${main_domain}";