From f42ef1a5f555b306ff93dd407bd5083db4391dd7 Mon Sep 17 00:00:00 2001 From: Grant Nestor Date: Wed, 26 Jul 2017 14:27:23 -0700 Subject: [PATCH] Remove quotes around URL in tornado_settings example --- docs/source/public_server.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/public_server.rst b/docs/source/public_server.rst index efe5a86e3..fd079b5ab 100644 --- a/docs/source/public_server.rst +++ b/docs/source/public_server.rst @@ -289,7 +289,7 @@ with the following configuration setting in c.NotebookApp.tornado_settings = { 'headers': { - 'Content-Security-Policy': "frame-ancestors 'https://mywebsite.example.com' 'self' " + 'Content-Security-Policy': "frame-ancestors https://mywebsite.example.com 'self' " } }