mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Default HTTP and HTTPS ports to 8008 and 8448
This commit is contained in:
parent
0393e87519
commit
08d2f902dd
@ -41,9 +41,11 @@ class ServerConfig(Config):
|
|||||||
server_group.add_argument("--signing-key-path",
|
server_group.add_argument("--signing-key-path",
|
||||||
help="The signing key to sign messages with")
|
help="The signing key to sign messages with")
|
||||||
server_group.add_argument("-p", "--bind-port", metavar="PORT",
|
server_group.add_argument("-p", "--bind-port", metavar="PORT",
|
||||||
type=int, help="https port to listen on")
|
type=int, help="https port to listen on",
|
||||||
|
default=8448)
|
||||||
server_group.add_argument("--unsecure-port", metavar="PORT",
|
server_group.add_argument("--unsecure-port", metavar="PORT",
|
||||||
type=int, help="http port to listen on")
|
type=int, help="http port to listen on",
|
||||||
|
default=8008)
|
||||||
server_group.add_argument("--bind-host", default="",
|
server_group.add_argument("--bind-host", default="",
|
||||||
help="Local interface to listen on")
|
help="Local interface to listen on")
|
||||||
server_group.add_argument("-D", "--daemonize", action='store_true',
|
server_group.add_argument("-D", "--daemonize", action='store_true',
|
||||||
|
Loading…
Reference in New Issue
Block a user