diff --git a/jupyter_codeserver_proxy/__init__.py b/jupyter_codeserver_proxy/__init__.py index 36d0ea6..ff30972 100755 --- a/jupyter_codeserver_proxy/__init__.py +++ b/jupyter_codeserver_proxy/__init__.py @@ -17,7 +17,7 @@ def _codeserver_command(port): if working_dir is None: working_dir = os.getenv("JUPYTER_SERVER_ROOT", ".") - return [full_path, '--port=' + str(port), "--allow-http", "--auth", "none", working_dir ] + return [full_path, '--port=' + str(port), "--auth", "none", working_dir ] return { 'command': _codeserver_command, diff --git a/setup.py b/setup.py index 7ecb5ac..8159b37 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setuptools.setup( name="jupyter-codeserver-proxy", - version='1.0b3', + version='1.0b4', url="https://github.com/dirkcgrunwald/jupyter-codeserver-proxy.git", author="Dirk Grunwald based on Project Jupyter Contributors", description="grunwald@colorado.edu",