Skip to content
Snippets Groups Projects
Commit c9f5af1d authored by Mark Haines's avatar Mark Haines
Browse files

Merge branch 'master' into develop

parents 481f5a2c 7993e3d1
No related branches found
No related tags found
No related merge requests found
...@@ -35,8 +35,11 @@ class ServerConfig(Config): ...@@ -35,8 +35,11 @@ class ServerConfig(Config):
if not args.content_addr: if not args.content_addr:
host = args.server_name host = args.server_name
if ':' not in host: if ':' not in host:
host = "%s:%d" % (host, args.bind_port) host = "%s:%d" % (host, args.unsecure_port)
args.content_addr = "https://%s" % (host,) else:
host = host.split(':')[0]
host = "%s:%d" % (host, args.unsecure_port)
args.content_addr = "http://%s" % (host,)
self.content_addr = args.content_addr self.content_addr = args.content_addr
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment