You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Obj: Connection to Jupyter notebook not secure
Hey,
I see a warning on left hand side of my Jupyter notebook url saying that the connection to the site is not secure.
I’ve attached a screenshot of the same.
Please help me understand why it says so and what are the precautions I can take.
Thank you.
[image of jupyter notebook on localhost 8888, clicking on padlock show this website is insecure].
The text was updated successfully, but these errors were encountered:
Thanks for your question, I'm not sure how much knowledge you have into networking/programming Jupyter, so I hope this explanation will suit you, feel free to ask for more details.
When you connect to a website, your computer talk to a server on another computer and we usually want this connection to be encrypted for no one to be able to listen to it. While usually the server is on another computer in the case of Jupyter they are on the same computer.
When you typed jupyter notebook, (or jupyter lab), you start a server on your local machine, and your browser accesses it.
That is what "localhost:xxxx" means, localhost is a specific name, you might also see 127.0.0.1 which is a special ip meaning "current computer".
Your computer communicating with itself is generally much less of a security concern for eavesdropping than communicating with another one (Unless you are in an environment where your computer is shared with multiple users that might be hostile to you). And setting up https between your computer and itself are extra steps that are not always easy, and can't be done automatically.
[image of jupyter notebook on localhost 8888, clicking on padlock show this website is insecure].
The text was updated successfully, but these errors were encountered: