Use proper port for SSL listener
This commit is contained in:
parent
f88551f926
commit
deb89e9202
|
@ -5,5 +5,6 @@ __pycache__/
|
|||
conf/live/
|
||||
conf/cert/
|
||||
env/
|
||||
venv/
|
||||
.idea/
|
||||
.env
|
||||
|
|
|
@ -2,7 +2,7 @@ version: "2"
|
|||
|
||||
services:
|
||||
app:
|
||||
image: pathogen/threshold
|
||||
image: pathogen/threshold:latest
|
||||
build: ./docker
|
||||
volumes:
|
||||
- ${PORTAINER_GIT_DIR}:/code
|
||||
|
|
|
@ -57,11 +57,13 @@ api_enabled = getenv("THRESHOLD_API_ENABLED", main.config["API"]["Enabled"]) in
|
|||
api_address = getenv("THRESHOLD_API_HOST", main.config["API"]["Address"])
|
||||
api_port = int(getenv("THRESHOLD_API_PORT", main.config["API"]["Port"]))
|
||||
|
||||
print("KEY", main.certPath + main.config["Key"])
|
||||
print("CERT", main.certPath + main.config["Certificate"])
|
||||
if __name__ == "__main__":
|
||||
listener = ServerFactory()
|
||||
if listener_ssl is True:
|
||||
reactor.listenSSL(
|
||||
main.config["Listener"]["Port"],
|
||||
listener_port,
|
||||
listener,
|
||||
DefaultOpenSSLContextFactory(
|
||||
main.certPath + main.config["Key"],
|
||||
|
|
Loading…
Reference in New Issue