We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Accessing JuptyerHub from vscode.dev, github.dev or the like requires some special configuration of the JupyterHub application.
origin = '*' c.Spawner.args = [f'--NotebookApp.allow_origin={origin}'] c.JupyterHub.tornado_settings = { 'headers': { 'Access-Control-Allow-Origin': origin, 'Access-Control-Allow-Private-Network': 'true', }, }
'Access-Control-Allow-Private-Network': 'true' is required only if JupyterHub is running on your local machine
'Access-Control-Allow-Private-Network': 'true'