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
TensorFlow GPU - @nottombrown (ami-8ed4d0e4)
Try to add https:// to force web browser to use HTTPS-connection.
I got:
[W 08:25:56.148 NotebookApp] SSL Error on 9 ('', 62862): [SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:590)
because Chrome tried to use HTTP connection. When using
https://
it finally works :)