chore: replace default Jitsi URL with meet.cryptopro.ru

This commit is contained in:
zarazaex69
2026-05-21 19:07:31 +03:00
parent 9bf81248c4
commit c45e12d5c6
23 changed files with 42 additions and 42 deletions

View File

@@ -117,7 +117,7 @@ mode: srv
auth:
provider: jitsi
room:
id: "https://meet.small-dm.ru/REPLACE_ME_WITH_ROOM_ID"
id: "https://meet.cryptopro.ru/REPLACE_ME_WITH_ROOM_ID"
crypto:
key: "REPLACE_ME_WITH_64_HEX_CHARS"
net:
@@ -133,7 +133,7 @@ mode: cnc
auth:
provider: jitsi
room:
id: "https://meet.small-dm.ru/REPLACE_ME_WITH_ROOM_ID"
id: "https://meet.cryptopro.ru/REPLACE_ME_WITH_ROOM_ID"
crypto:
key: "REPLACE_ME_WITH_64_HEX_CHARS"
net:
@@ -199,7 +199,7 @@ Go версия в сборочных скриптах: `1.25`. Для `videocha
```go
sess, err := olcrtc.New(ctx, olcrtc.Config{
Auth: "jitsi",
RoomID: "https://meet.small-dm.ru/myroom",
RoomID: "https://meet.cryptopro.ru/myroom",
})
if err != nil {
return err
@@ -213,7 +213,7 @@ conn, err := sess.Dial(ctx)
srv := tunnel.New(tunnel.Config{
Transport: "datachannel",
Carrier: "jitsi",
RoomURL: "https://meet.small-dm.ru/myroom",
RoomURL: "https://meet.cryptopro.ru/myroom",
KeyHex: "<64-char hex>",
DNSServer: "8.8.8.8:53",
})