Unable to establish encrypted transmission
` version: '3.6'
services:
rustdesk-server:
container_name: rustdesk-server
ports:
- 23565:21115
- 23566:21116
- 23566:21116/udp
- 23567:21117
- 23568:21118
- 23569:21119
image: rustdesk/rustdesk-server-s6:latest
environment:
- "RELAY=x.x.x.x:23567"
- "ENCRYPTED_ONLY=1"
- "DB_URL=/db/db_v2.sqlite3"
volumes:
- ./db:/db
restart: unless-stopped
secrets:
- key_pub
- key_priv
secrets:
key_pub:
file: /root/rustdesk/secrets/pub
key_priv:
file: /root/rustdesk/secrets/priv
`

Unable to establish encrypted transmission.
same here, version 1.1.6-1, inputed the pub key in client, still unable to establish encrypted transmission.
Same here on 1.1.7 without encryption works rustdesk fine. Please fix it.
@dayue1984 @nillebor @xiaoyin111 Did you ever solve it? I would like to encrypt too. I set up my own server. Works fine, but not sure how to get encryption enabled.
if you have activated the encryption, you just have to take the key from the docker rustdeskserver log and insert it at the client
Ok thanks, I retreived the public key from /data/id_ed25519.pub and pasted it into Key field. Encryption is working now. I guess I missed this in the docs somewhere...
