aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw-e-w <40751091+w-e-w@users.noreply.github.com>2023-07-25 20:36:39 +0900
committerw-e-w <40751091+w-e-w@users.noreply.github.com>2023-07-25 20:51:27 +0900
commitb1a16a298c7f71e8e7d6254f16d4143f77b5c9a5 (patch)
treec192351a531ea78ebc96d8e17636bb677d2a20a9
parentfc8e23dec54807afbcb229caa53bcc540b4000b1 (diff)
api only subpath (rootpath)
Co-Authored-By: 陈杰 <pythias@gmail.com>
-rw-r--r--modules/api/api.py4
-rw-r--r--webui.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/api/api.py b/modules/api/api.py
index 9d73083f..606db179 100644
--- a/modules/api/api.py
+++ b/modules/api/api.py
@@ -724,9 +724,9 @@ class Api:
cuda = {'error': f'{err}'}
return models.MemoryResponse(ram=ram, cuda=cuda)
- def launch(self, server_name, port):
+ 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)
+ uvicorn.run(self.app, host=server_name, port=port, timeout_keep_alive=shared.cmd_opts.timeout_keep_alive, root_path=root_path)
def kill_webui(self):
restart.stop_program()
diff --git a/webui.py b/webui.py
index 2314735f..6bf06854 100644
--- a/webui.py
+++ b/webui.py
@@ -374,7 +374,7 @@ def api_only():
api.launch(
server_name="0.0.0.0" if cmd_opts.listen else "127.0.0.1",
port=cmd_opts.port if cmd_opts.port else 7861,
- root_path = f"/{cmd_opts.subpath}"
+ root_path=f"/{cmd_opts.subpath}" if cmd_opts.subpath else ""
)