mirror of https://github.com/telemt/telemt.git
Update README.md
This commit is contained in:
parent
eeee55e8ea
commit
96d0a6bdfa
13
README.md
13
README.md
|
|
@ -46,13 +46,22 @@ telemt config.toml
|
||||||
|
|
||||||
## How to use?
|
## How to use?
|
||||||
### Telemt via Systemd
|
### Telemt via Systemd
|
||||||
|
0. Check port and generate secrets
|
||||||
|
The port you have selected for use should be MISSING from the list, when:
|
||||||
|
```bash
|
||||||
|
netstat -lnp
|
||||||
|
```
|
||||||
|
|
||||||
|
Generate 16 bytes/32 characters HEX with OpenSSL or another way:
|
||||||
|
```bash
|
||||||
|
openssl rand -hex 16
|
||||||
|
```
|
||||||
1. Place your config to /etc/telemt.toml
|
1. Place your config to /etc/telemt.toml
|
||||||
```bash
|
```bash
|
||||||
port = 443 # Listening port
|
port = 443 # Listening port
|
||||||
|
|
||||||
[users]
|
[users]
|
||||||
# ! Generate YOUR OWN secret with "openssl rand -hex 16", replace it instead 00000000000000000000000000000000 !
|
hello = "00000000000000000000000000000000" # Replace the secret with one generated before
|
||||||
hello = "00000000000000000000000000000000"
|
|
||||||
|
|
||||||
[modes]
|
[modes]
|
||||||
classic = false # Plain obfuscated mode
|
classic = false # Plain obfuscated mode
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue