Merge pull request #4583 from NoCrypt/patch-1
Forcing HTTPS instead of HTTP for ngrok
This commit is contained in:
commit
c33b9a6da7
1 changed files with 2 additions and 2 deletions
|
@ -15,9 +15,9 @@ def connect(token, port, region):
|
||||||
)
|
)
|
||||||
try:
|
try:
|
||||||
if account == None:
|
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:
|
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:
|
except exception.PyngrokNgrokError:
|
||||||
print(f'Invalid ngrok authtoken, ngrok connection aborted.\n'
|
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')
|
f'Your token: {token}, get the right one on https://dashboard.ngrok.com/get-started/your-authtoken')
|
||||||
|
|
Loading…
Reference in a new issue