v1.0.2: fix flag usage
This commit is contained in:
parent
1779a1b78d
commit
ab3ad9f5af
|
@ -50,9 +50,11 @@ Usage
|
||||||
=====
|
=====
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sclient <remote> <local> [-k | --insecure]
|
sclient [flags] <remote> <local>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
* flags
|
||||||
|
* -k, --insecure ignore invalid TLS (SSL/HTTPS) certificates
|
||||||
* remote
|
* remote
|
||||||
* must have servername (i.e. example.com)
|
* must have servername (i.e. example.com)
|
||||||
* port is optional (default is 443)
|
* port is optional (default is 443)
|
||||||
|
@ -78,5 +80,5 @@ sclient telebit.cloud:443 localhost:3000
|
||||||
Ignore a bad TLS/SSL/HTTPS certificate and connect anyway.
|
Ignore a bad TLS/SSL/HTTPS certificate and connect anyway.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sclient badtls.telebit.cloud:443 localhost:3000 -k
|
sclient -k badtls.telebit.cloud:443 localhost:3000
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue