diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-07-25 12:19:10 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-07-25 13:20:46 +0000 |
commit | ce0aab36432c655c8cb48ccc2caf23d10d77cad1 (patch) | |
tree | f2051e8a602e94ca79f68ff111df7dcbfde3c51d | |
parent | c251e8db8d71e649e4350f13aad1a76ed98d35c3 (diff) | |
download | stable-diffusion-webui-gfx803-ce0aab36432c655c8cb48ccc2caf23d10d77cad1.tar.gz stable-diffusion-webui-gfx803-ce0aab36432c655c8cb48ccc2caf23d10d77cad1.tar.bz2 stable-diffusion-webui-gfx803-ce0aab36432c655c8cb48ccc2caf23d10d77cad1.zip |
Merge pull request #11984 from AUTOMATIC1111/api-only-subpath-(root_path)
api only subpath (rootpath)
-rw-r--r-- | modules/api/api.py | 4 | ||||
-rw-r--r-- | webui.py | 2 |
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() @@ -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 ""
)
|