aboutsummaryrefslogtreecommitdiffstats
path: root/modules/cmd_args.py
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2023-05-01 11:27:53 +0000
committerAUTOMATIC <16777216c@gmail.com>2023-05-01 11:27:53 +0000
commitfe8a10d428bcc6be9cc8efb9772eca9e40f98dc8 (patch)
treed1e0ff50e327c3c59230b39907284c20ffbf0fe3 /modules/cmd_args.py
parent22bcc7be428c94e9408f589966c2040187245d81 (diff)
parent6fbd85dd0c0dffc06560bff91f4c4b65e441ca5f (diff)
downloadstable-diffusion-webui-gfx803-fe8a10d428bcc6be9cc8efb9772eca9e40f98dc8.tar.gz
stable-diffusion-webui-gfx803-fe8a10d428bcc6be9cc8efb9772eca9e40f98dc8.tar.bz2
stable-diffusion-webui-gfx803-fe8a10d428bcc6be9cc8efb9772eca9e40f98dc8.zip
Merge branch 'release_candidate'
Diffstat (limited to 'modules/cmd_args.py')
-rw-r--r--modules/cmd_args.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/cmd_args.py b/modules/cmd_args.py
index 81c0b82a..f47c21bb 100644
--- a/modules/cmd_args.py
+++ b/modules/cmd_args.py
@@ -95,6 +95,7 @@ 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")