docs: replace 1.1.1.1 with 8.8.8.8 as default DNS server

This commit is contained in:
zarazaex69
2026-05-21 19:01:10 +03:00
parent 0ec244e0dc
commit 9bf81248c4
16 changed files with 51 additions and 50 deletions
+5 -5
View File
@@ -117,12 +117,12 @@ mode: srv
auth:
provider: jitsi
room:
id: "https://meet.small-dm.ru/myroom"
id: "https://meet.small-dm.ru/REPLACE_ME_WITH_ROOM_ID"
crypto:
key: "REPLACE_ME_WITH_64_HEX_CHARS"
net:
transport: datachannel
dns: "1.1.1.1:53"
dns: "8.8.8.8:53"
data: data
```
@@ -133,12 +133,12 @@ mode: cnc
auth:
provider: jitsi
room:
id: "https://meet.small-dm.ru/myroom"
id: "https://meet.small-dm.ru/REPLACE_ME_WITH_ROOM_ID"
crypto:
key: "REPLACE_ME_WITH_64_HEX_CHARS"
net:
transport: datachannel
dns: "1.1.1.1:53"
dns: "8.8.8.8:53"
socks:
host: "127.0.0.1"
port: 8808
@@ -215,7 +215,7 @@ srv := tunnel.New(tunnel.Config{
Carrier: "jitsi",
RoomURL: "https://meet.small-dm.ru/myroom",
KeyHex: "<64-char hex>",
DNSServer: "1.1.1.1:53",
DNSServer: "8.8.8.8:53",
})
err := srv.Run(ctx)
```