簡體   English   中英

jupyter SSL:WRONG_VERSION_NUMBER

[英]jupyter SSL: WRONG_VERSION_NUMBER

我的Jupyter配置如下:

# encoding=utf-8
c = get_config()
c.IPKernelApp.pylab = 'inline'
c.NotebookApp.certfile = u'/root/.ipython/profile_txz_server/mycert.pem'
c.NotebookApp.client_ca = u'/root/.ipython/profile_txz_server/mycert.pem'

c.NotebookApp.password = u'sha1:4a46aefd018f:170840e2f9af032488....' # txzing_token
c.NotebookApp.ip = '127.0.0.1'
c.NotebookApp.port = 8888
c.NotebookApp.open_browser = False
c.NotebookApp.trust_xheaders = True

和我的Nginx HTTP Config像這樣:

upstream notebook {
    server localhost:8888;
}
server {
    listen 80;
    server_name xx.xx.com;
    rewrite ^/(.*) https://xx.xx.com/$1 permanent;
}
server{
    listen 443 ssl;
    index index.html;
    server_name xx.xx.com;
    ssl_certificate /root/.ipython/profile_txz_server/mycert.pem;
    ssl_certificate_key /root/.ipython/profile_txz_server/mycert.pem;
    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
    ssl_prefer_server_ciphers on;
    ssl_session_cache shared:SSL:10m;
    location / {
        proxy_pass            http://127.0.0.1:8888;
        proxy_set_header      Host $host;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_set_header Origin "";
    }
}

最后,我嘗試訪問url: https : //xx.xx.com

Jupyter出現如下錯誤:

SSL Error on 9 ('127.0.0.1', 43378): [SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:749)

我該如何處理這個問題?

我處理這個問題。 我嘗試這樣做:

# c.NotebookApp.certfile = u'/root/.ipython/profile_txz_server/mycert.pem'
# c.NotebookApp.client_ca = u'/root/.ipython/profile_txz_server/mycert.pem'

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM