如何将JUPYTERHUB嵌入iframe?

时间:2018-10-13 17:33:18

标签: javascript python html jupyterhub

我在github上尝试了所有解决方案,但这些都不起作用

这是我当前的config <iframe src="http://xxx:8000/"></iframe>

更新

在此处输入代码

这是jupyterhub配置文件。

`
c.Authenticator.whitelist = {'user'}
c.Authenticator.admin_users = {'admin'}
c.JupyterHub.tornado_settings = {
    'headers': {
        'Content-Security-Policy': 'frame-ancestors self http://localhost:8080',
    }
}
c.JupyterHub.tornado_settings = {'headers': {'X-Frame-Options': 'ALLOW-FROM http://localhost:8080/'}}
`

这是jupyter笔记本配置文件

`
c.NotebookApp.open_browser = True
c.NotebookApp.tornado_settings = {
    'headers': {
        'Content-Security-Policy': "frame-ancestors http://localhost:8080/ 'self' "
    }
}
c.NotebookApp.tornado_settings = {'headers': {'X-Frame-Options': 'ALLOW- FROM http://localhost:8080/'}}
`

0 个答案:

没有答案