jupyter-notebook: how to ssl the prodigy output?

yes Ines thats right. Adding some lines in the in the prodigy/app.py at uvicorn.run let it work.

    ssl_keyfile="/address/.Certs/key.pem",
    ssl_certfile="/address/.Certs/cert.pem",
    ssl_ca_certs=None,
    ssl_ciphers="TLSv1",
    ssl_version=2,
    ssl_cert_reqs=0,  

But it doesn't solve the prob with the tab in the jupyter lab.

1 Like