Skip to content

Commit

Permalink
Allow unauthenticated access to jupyter server
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski authored Aug 28, 2024
1 parent db992b7 commit c56d407
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions nbdime/webapp/nbdimeserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,7 @@ def make_app(**params):
'jinja2_env': env,
'local_hostnames': ['localhost', '127.0.0.1'],
'cookie_secret': base64.encodebytes(os.urandom(32)), # Needed even for an unsecured server.
'allow_unauthenticated_access': True,
}

try:
Expand Down

0 comments on commit c56d407

Please sign in to comment.