Skip to content

Commit

Permalink
Fixed broken path in config
Browse files Browse the repository at this point in the history
  • Loading branch information
wtripp180901 committed Aug 9, 2023
1 parent 3ec6597 commit a53e49a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions base-notebook/jupyter_server_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,19 @@

c.ServerApp.allow_remote_access = True
c.ServerApp.allow_origin = '*'
c.ServerApp.base_url = '/node/slurmd-0/8888'
c.ServerApp.default_url = '/node/slurmd-0/8888/'

c.Application.log_level = 'DEBUG'

c.NotebookApp.ip = '*'
c.NotebookApp.port = 8888
c.NotebookApp.port_retries = 0
c.NotebookApp.password = u'sha1:7d93500c86ae587b3d9f4bf1b8cec36f221c8183'
c.NotebookApp.password = 'sha1:7d93500c86ae587b3d9f4bf1b8cec36f221c8183'
c.NotebookApp.base_url = '/node/slurmd-0/8888/'
c.NotebookApp.open_browser = False
c.NotebookApp.allow_origin = '*'
c.NotebookApp.notebook_dir = /home/rocky
c.NotebookApp.notebook_dir = '/home/rocky'
c.NotebookApp.disable_check_xsrf = True

# to output both image/svg+xml and application/pdf plot formats in the notebook file
Expand Down

0 comments on commit a53e49a

Please sign in to comment.