mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-16 06:22:59 +00:00
make spawner IP configurable
mainly for localhost->127.0.0.1 config in pathological cases
This commit is contained in:
@@ -65,7 +65,7 @@ class Server(Base):
|
||||
__tablename__ = 'servers'
|
||||
id = Column(Integer, primary_key=True)
|
||||
proto = Column(Unicode, default='http')
|
||||
ip = Column(Unicode, default='localhost')
|
||||
ip = Column(Unicode, default='')
|
||||
port = Column(Integer, default=random_port)
|
||||
base_url = Column(Unicode, default='/')
|
||||
cookie_name = Column(Unicode, default='cookie')
|
||||
|
Reference in New Issue
Block a user