I\'m trying to serve a Jupyter notebook from EC2 but I\'m getting an SSL error.
I\'m using this AMI: TensorFlow GPU - @nottombrown (ami-8ed4d0e4)
. I used a self
I had a the same error while running jupyter notebook as a public server with a self-signed cert under Unbuntu 14.4. In my case, the problem was due to an error in the jupyter_notebook_config.py file. I had incorrectly set c.NotebookApp.client_ca = u'/../mycert.pem'. Commenting this line out solved the problem.