include tls arguments in api uvicorn init

This commit is contained in:
unknown 2024-01-09 03:01:20 -06:00
parent 6869d95890
commit 8d986727b3
No known key found for this signature in database
GPG Key ID: CA376082283AF69A
1 changed files with 9 additions and 1 deletions

View File

@ -879,7 +879,15 @@ class Api:
def launch(self, server_name, port, root_path):
self.app.include_router(self.router)
uvicorn.run(self.app, host=server_name, port=port, timeout_keep_alive=shared.cmd_opts.timeout_keep_alive, root_path=root_path)
uvicorn.run(
self.app,
host=server_name,
port=port,
timeout_keep_alive=shared.cmd_opts.timeout_keep_alive,
root_path=root_path,
ssl_keyfile=shared.cmd_opts.tls_keyfile,
ssl_certfile=shared.cmd_opts.tls_certfile
)
def kill_webui(self):
restart.stop_program()