diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-09-08 08:46:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-08 08:46:51 +0000 |
commit | a196c45f15dc088e7162476729cf3bf28b0b3d73 (patch) | |
tree | e90b392fefa197780427abbfb2ce0d19ae62b109 /webui.py | |
parent | 27dfcf69daf10b0c1e9b1844bb630dcc1898af50 (diff) | |
parent | cce6f1df4117dc90cb16a07dc1634f0203c6bc0d (diff) | |
download | stable-diffusion-webui-gfx803-a196c45f15dc088e7162476729cf3bf28b0b3d73.tar.gz stable-diffusion-webui-gfx803-a196c45f15dc088e7162476729cf3bf28b0b3d73.tar.bz2 stable-diffusion-webui-gfx803-a196c45f15dc088e7162476729cf3bf28b0b3d73.zip |
Merge pull request #146 from orionaskatu/orionaskatu-port-option
--port option for #131
Diffstat (limited to 'webui.py')
-rw-r--r-- | webui.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -191,4 +191,4 @@ if __name__ == "__main__": run_pnginfo=run_pnginfo
)
- demo.launch(share=cmd_opts.share, server_name="0.0.0.0" if cmd_opts.listen else None)
+ demo.launch(share=cmd_opts.share, server_name="0.0.0.0" if cmd_opts.listen else None, server_port=cmd_opts.port)
|