diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-07-25 12:19:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-25 12:19:10 +0000 |
commit | bed598ce7fb547e57c73675ab0a096c4714f8b9f (patch) | |
tree | c192351a531ea78ebc96d8e17636bb677d2a20a9 /modules/api/api.py | |
parent | fc8e23dec54807afbcb229caa53bcc540b4000b1 (diff) | |
parent | b1a16a298c7f71e8e7d6254f16d4143f77b5c9a5 (diff) | |
download | stable-diffusion-webui-gfx803-bed598ce7fb547e57c73675ab0a096c4714f8b9f.tar.gz stable-diffusion-webui-gfx803-bed598ce7fb547e57c73675ab0a096c4714f8b9f.tar.bz2 stable-diffusion-webui-gfx803-bed598ce7fb547e57c73675ab0a096c4714f8b9f.zip |
Merge pull request #11984 from AUTOMATIC1111/api-only-subpath-(root_path)
api only subpath (rootpath)
Diffstat (limited to 'modules/api/api.py')
-rw-r--r-- | modules/api/api.py | 4 |
1 files changed, 2 insertions, 2 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() |