fixed bug with env login

This commit is contained in:
GotthardG
2024-12-11 12:03:33 +01:00
parent c3b24c213a
commit 9e88fb3270
3 changed files with 12 additions and 4 deletions

View File

@ -82,5 +82,5 @@ if __name__ == "__main__":
key_path = "ssl/mx-aare-test.psi.ch.key"
# Run the application with appropriate SSL setup
uvicorn.run(app, host="0.0.0.0", port=8000, log_level="debug",
uvicorn.run(app, port=8000, log_level="debug",
ssl_keyfile=key_path, ssl_certfile=cert_path)