Skip to content

Commit

Permalink
jupyter#1205: Fix c.ServerApp.certfile
Browse files Browse the repository at this point in the history
  • Loading branch information
romainx committed Dec 29, 2020
1 parent c41616d commit 9648e05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base-notebook/jupyter_server_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
'-out', pem_file])
# Restrict access to the file
os.chmod(pem_file, stat.S_IRUSR | stat.S_IWUSR)
c.NotebookApp.certfile = pem_file
c.ServerApp.certfile = pem_file

# Change default umask for all subprocesses of the notebook server if set in
# the environment
Expand Down

0 comments on commit 9648e05

Please sign in to comment.