Use proper port for SSL listener

This commit is contained in:
Mark Veidemanis 2022-07-29 22:22:22 +01:00
parent f88551f926
commit deb89e9202
3 changed files with 5 additions and 2 deletions

1
.gitignore vendored
View File

@ -5,5 +5,6 @@ __pycache__/
conf/live/
conf/cert/
env/
venv/
.idea/
.env

View File

@ -2,7 +2,7 @@ version: "2"
services:
app:
image: pathogen/threshold
image: pathogen/threshold:latest
build: ./docker
volumes:
- ${PORTAINER_GIT_DIR}:/code

View File

@ -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"],