diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-05-08 06:01:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-08 06:01:25 +0000 |
commit | 73d956454f0111ffdbebc0285033ca3dd630346b (patch) | |
tree | 4396fd0dfed3e0a7a5aac04a159619cec1b2f535 /modules/cmd_args.py | |
parent | 57a3d146e3e193904c1c5e148f7244b9d045f157 (diff) | |
parent | b15bbef798f5aba047f0e6955ce94fe589071b44 (diff) | |
download | stable-diffusion-webui-gfx803-73d956454f0111ffdbebc0285033ca3dd630346b.tar.gz stable-diffusion-webui-gfx803-73d956454f0111ffdbebc0285033ca3dd630346b.tar.bz2 stable-diffusion-webui-gfx803-73d956454f0111ffdbebc0285033ca3dd630346b.zip |
Merge branch 'dev' into tooltip
Diffstat (limited to 'modules/cmd_args.py')
-rw-r--r-- | modules/cmd_args.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/cmd_args.py b/modules/cmd_args.py index 81c0b82a..d906a571 100644 --- a/modules/cmd_args.py +++ b/modules/cmd_args.py @@ -95,9 +95,11 @@ parser.add_argument("--cors-allow-origins", type=str, help="Allowed CORS origin( parser.add_argument("--cors-allow-origins-regex", type=str, help="Allowed CORS origin(s) in the form of a single regular expression", default=None)
parser.add_argument("--tls-keyfile", type=str, help="Partially enables TLS, requires --tls-certfile to fully function", default=None)
parser.add_argument("--tls-certfile", type=str, help="Partially enables TLS, requires --tls-keyfile to fully function", default=None)
+parser.add_argument("--disable-tls-verify", action="store_false", help="When passed, enables the use of self-signed certificates.", default=None)
parser.add_argument("--server-name", type=str, help="Sets hostname of server", default=None)
parser.add_argument("--gradio-queue", action='store_true', help="does not do anything", default=True)
parser.add_argument("--no-gradio-queue", action='store_true', help="Disables gradio queue; causes the webpage to use http requests instead of websockets; was the defaul in earlier versions")
parser.add_argument("--skip-version-check", action='store_true', help="Do not check versions of torch and xformers")
parser.add_argument("--no-hashing", action='store_true', help="disable sha256 hashing of checkpoints to help loading performance", default=False)
parser.add_argument("--no-download-sd-model", action='store_true', help="don't download SD1.5 model even if no model is found in --ckpt-dir", default=False)
+parser.add_argument('--subpath', type=str, help='customize the subpath for gradio, use with reverse proxy')
\ No newline at end of file |