diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-11-27 13:30:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-27 13:30:23 +0000 |
commit | c33b9a6da7893b2d083c0857386e593e24fc8a00 (patch) | |
tree | c792c435aab354ca8daebaf5d5145cdfd7a0d25c /modules | |
parent | 506d529d19f135f57e142371271f84d4971b456f (diff) | |
parent | 6165f07e74f05543bf9039dda5d66686d18d985a (diff) | |
download | stable-diffusion-webui-gfx803-c33b9a6da7893b2d083c0857386e593e24fc8a00.tar.gz stable-diffusion-webui-gfx803-c33b9a6da7893b2d083c0857386e593e24fc8a00.tar.bz2 stable-diffusion-webui-gfx803-c33b9a6da7893b2d083c0857386e593e24fc8a00.zip |
Merge pull request #4583 from NoCrypt/patch-1
Forcing HTTPS instead of HTTP for ngrok
Diffstat (limited to 'modules')
-rw-r--r-- | modules/ngrok.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ngrok.py b/modules/ngrok.py index 10d2179f..64c9a3c2 100644 --- a/modules/ngrok.py +++ b/modules/ngrok.py @@ -15,9 +15,9 @@ def connect(token, port, region): ) try: if account == None: - public_url = ngrok.connect(port, pyngrok_config=config).public_url + public_url = ngrok.connect(port, pyngrok_config=config, bind_tls=True).public_url else: - public_url = ngrok.connect(port, pyngrok_config=config, auth=account).public_url + public_url = ngrok.connect(port, pyngrok_config=config, bind_tls=True, auth=account).public_url except exception.PyngrokNgrokError: print(f'Invalid ngrok authtoken, ngrok connection aborted.\n' f'Your token: {token}, get the right one on https://dashboard.ngrok.com/get-started/your-authtoken') |