diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-01-04 15:39:57 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-04 15:39:57 +0000 |
commit | 37aafdb059fc038df7217a907048f7eb61f0beee (patch) | |
tree | 5ddecfd6d96d6bb1fea556a75fff58782ffcec3b /modules/ngrok.py | |
parent | 4fbdbddc18b21f712acae58bf41740d27023285f (diff) | |
parent | a8eb9e3bf814f72293e474c11e9ff0098859a942 (diff) | |
download | stable-diffusion-webui-gfx803-37aafdb059fc038df7217a907048f7eb61f0beee.tar.gz stable-diffusion-webui-gfx803-37aafdb059fc038df7217a907048f7eb61f0beee.tar.bz2 stable-diffusion-webui-gfx803-37aafdb059fc038df7217a907048f7eb61f0beee.zip |
Merge branch 'master' into master
Diffstat (limited to 'modules/ngrok.py')
-rw-r--r-- | modules/ngrok.py | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/modules/ngrok.py b/modules/ngrok.py index 5c5f349a..3df2c06b 100644 --- a/modules/ngrok.py +++ b/modules/ngrok.py @@ -1,14 +1,23 @@ from pyngrok import ngrok, conf, exception - def connect(token, port, region): - if token == None: + account = None + if token is None: token = 'None' + else: + if ':' in token: + # token = authtoken:username:password + account = token.split(':')[1] + ':' + token.split(':')[-1] + token = token.split(':')[0] + config = conf.PyngrokConfig( auth_token=token, region=region ) try: - public_url = ngrok.connect(port, pyngrok_config=config).public_url + if account is None: + public_url = ngrok.connect(port, pyngrok_config=config, bind_tls=True).public_url + else: + 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') |