我在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/'}}
`