### 📋 Summary
When I make a call from inside the LAN everything works fine (bot…h users inside the LAN), but call interrupts each 1 minute when I start call from client behind the NAT (out of LAN) when 2+ users on call
### ⚙️ Setup Details
JItsi v2.0.10184
Docker 28.0.4
OS Ubuntu 22
We have Rocket.Chat server and Jitsi server on separated nodes in our LAN. For simplicity's sake, I won't mention Rocket.Chat again as it's not essential. Our configuration looks something like this (screen)

Jitsi is running via Docker Compose as described here - https://jitsi.github.io/handbook/docs/devops-guide/devops-guide-docker.
#### .env config
```
DISABLE_HTTPS=1
ENABLE_HTTP_REDIRECT=0
ENABLE_LETSENCRYPT=0
# Directory where all configuration will be stored
CONFIG=~/.jitsi-meet-cfg
# Exposed HTTP port (will redirect to HTTPS port)
HTTP_PORT=8000
# Exposed HTTPS port
HTTPS_PORT=8443
# System time zone
TZ=UTC
PUBLIC_URL=https://meet.mycompany.com
JVB_ADVERTISE_IPS=10.0.7.167
# XMPP password for Jicofo client connections
JICOFO_AUTH_PASSWORD=<SECRET>
# XMPP password for JVB client connections
JVB_AUTH_PASSWORD=<SECRET>
# XMPP password for Jigasi MUC client connections
JIGASI_XMPP_PASSWORD=<SECRET>
# XMPP password for Jigasi transcriber client connections
JIGASI_TRANSCRIBER_PASSWORD=<SECRET>
# XMPP recorder password for Jibri client connections
JIBRI_RECORDER_PASSWORD=<SECRET>
# XMPP password for Jibri client connections
JIBRI_XMPP_PASSWORD=<SECRET>
```
#### Docker Compose config - default
#### Nginx config
```
server {
# Permanently redirect to HTTPS.
server_name meet.mycompany.com;
listen 80;
return 301 https://$host$request_uri;
}
server {
server_name meet.mycompany.com;
listen 443 ssl;
http2 on;
resolver 8.8.4.4 8.8.8.8 valid=300s;
resolver_timeout 10s;
ssl_certificate /etc/nginx/ssl/mycompany.crt;
ssl_certificate_key /etc/nginx/ssl/mycompany.key;
root /srv/nginx;
location /xmpp-websocket {
proxy_pass http://10.0.7.167:8000/xmpp-websocket;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
# Prevent timeout
proxy_read_timeout 3600;
proxy_send_timeout 3600;
tcp_nodelay on;
}
location /colibri-ws {
proxy_pass http://10.0.7.167:8000/colibri-ws/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
# Prevent timeout
proxy_read_timeout 3600;
proxy_send_timeout 3600;
tcp_nodelay on;
}
location / {
proxy_pass http://10.0.7.167:8000/;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
```
### 🔍 Logs
#### Browser logs:
```
RocketChat67ffbdce2d76fbf0bee8459f:72 (TIME) index.html loaded: 312.8999999985099
Logger.js:155 2025-04-16T14:25:28.244Z [features/base/redux] <Object.persistState>: redux state persisted. 3c995bbbc5889941c74eaf8deaff12b9 -> 0a17726d822996fc2445857ab4bc4feb
Logger.js:155 2025-04-16T14:25:28.248Z [features/base/sounds] PLAY_SOUND: no sound found for id: RECORDING_OFF_SOUND
a @ Logger.js:155
Logger.js:155 2025-04-16T14:25:28.251Z [features/base/sounds] PLAY_SOUND: no sound found for id: RECORDING_OFF_SOUND
a @ Logger.js:155
Logger.js:155 2025-04-16T14:25:28.287Z [features/base/config] Extending config with: {"callDisplayName":"ktest","prejoinConfig":{"enabled":false},"prejoinPageEnabled":false,"startWithAudioMuted":false,"startWithVideoMuted":true}
Logger.js:155 2025-04-16T14:25:28.290Z [JitsiMeetJS] <Object.init>: This appears to be chrome, ver: 135.0.0.0
Logger.js:155 2025-04-16T14:25:28.291Z [modules/statistics/LocalStatsCollector] <No.connectAudioContext>: Connecting audio context
Logger.js:155 2025-04-16T14:25:28.293Z [modules/RTC/RTCUtils] <Ys.init>: Disable AP: false
Logger.js:155 2025-04-16T14:25:28.294Z [modules/RTC/RTCUtils] <Ys.init>: Disable AGC: false
Logger.js:155 2025-04-16T14:25:28.294Z [modules/RTC/RTCUtils] <Ys.init>: Stereo: false
Logger.js:155 2025-04-16T14:25:28.296Z [features/base/lib-jitsi-meet] lib-jitsi-meet version: 64dcc15c
Logger.js:155 2025-04-16T14:25:28.297Z [features/base/lib-jitsi-meet] User Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36
Logger.js:155 2025-04-16T14:25:28.300Z [features/base/media] Start muted: video
Logger.js:155 2025-04-16T14:25:28.301Z [features/base/media] Start audio only set to false
Logger.js:155 2025-04-16T14:25:28.302Z [features/analytics] Initialized 0 analytics handlers
Logger.js:155 2025-04-16T14:25:28.424Z [index.web] <HTMLDocument.<anonymous>>: (TIME) document ready: 1420.800000000745
RocketChat67ffbdce2d76fbf0bee8459f:55 Service worker registered. ServiceWorkerRegistration
Logger.js:155 2025-04-16T14:25:28.453Z [modules/RTC/RTCUtils] <Ys._onMediaDevicesListChanged>: list of media devices has changed: Array(4)
Logger.js:155 2025-04-16T14:25:28.563Z [conference.js] <Object.init>: Dispatching connect from init since prejoin is not visible.
Logger.js:155 2025-04-16T14:25:28.566Z [features/base/connection] Using service URL wss://meet.mycompany.com/xmpp-websocket
Logger.js:155 2025-04-16T14:25:28.569Z [modules/xmpp/moderator] <new gc>: Using xmpp for conference requests.
Logger.js:155 2025-04-16T14:25:28.569Z [modules/xmpp/xmpp] <kl._initStrophePlugins>: P2P STUN servers: Array(1)
Logger.js:155 2025-04-16T14:25:28.590Z [modules/xmpp/xmpp] <kl.connectionHandler>: (TIME) Strophe connecting: 1585.1000000014901
Logger.js:155 2025-04-16T14:25:28.593Z [modules/RTC/RTCUtils] <Ys.<anonymous>>: Got media constraints: {"video":false,"audio":{"autoGainControl":true,"echoCancellation":true,"noiseSuppression":true}}
Logger.js:155 2025-04-16T14:25:28.717Z [modules/RTC/RTCUtils] onUserMediaSuccess
RocketChat67ffbdce2d76fbf0bee8459f:75 (TIME) window loaded event: 1784.1000000014901
Logger.js:155 2025-04-16T14:25:29.258Z [features/base/app] <PressureObserver.<anonymous>>: Compute pressure state changed: [{"source":"cpu","state":"nominal","time":2254.10000000149}]
Logger.js:155 2025-04-16T14:25:30.144Z [modules/xmpp/XmppConnection] <lc._maybeEnableStreamResume>: Enabling XEP-0198 stream management
Logger.js:155 2025-04-16T14:25:30.145Z [modules/xmpp/XmppConnection] <lc._maybeStartWSKeepAlive>: WebSocket keep alive interval: 60000ms
Logger.js:155 2025-04-16T14:25:30.147Z [modules/xmpp/strophe.ping] <cc.startInterval>: XMPP pings will be sent every 10000 ms
Logger.js:155 2025-04-16T14:25:30.147Z [modules/xmpp/xmpp] <kl.connectionHandler>: (TIME) Strophe connected: 3143.699999999255
Logger.js:155 2025-04-16T14:25:30.148Z [modules/xmpp/xmpp] <kl.connectionHandler>: My Jabber ID: 7ce1d9b8-ea22-403b-8634-af0a5b8cd817@meet.jitsi/8g4u6X0JoDoQ
Logger.js:155 2025-04-16T14:25:30.151Z [features/base/dialog] <iC>: Hide dialog: xX
Logger.js:155 2025-04-16T14:25:30.171Z [modules/xmpp/xmpp] <kl.createRoom>: JID 7ce1d9b8-ea22-403b-8634-af0a5b8cd817@meet.jitsi/8g4u6X0JoDoQ using MUC nickname 7ce1d9b8
Logger.js:155 2025-04-16T14:25:30.172Z [modules/xmpp/ChatRoom] <new Vc>: Joining MUC as rocketchat67ffbdce2d76fbf0bee8459f@muc.meet.jitsi/7ce1d9b8
Logger.js:155 2025-04-16T14:25:30.183Z [modules/qualitycontrol/CodecSelection] <new Bp>: Codec preference order for jvb connection is av1,vp9,vp8,h264
Logger.js:155 2025-04-16T14:25:30.189Z [modules/qualitycontrol/CodecSelection] <new Bp>: Codec preference order for p2p connection is av1,vp9,vp8,h264
Logger.js:155 2025-04-16T14:25:30.192Z [modules/statistics/AvgRTPStatsReporter] <new om>: Avg RTP stats will be calculated every 15 samples
Logger.js:155 2025-04-16T14:25:30.192Z [JitsiConference] <new Mm>: backToP2PDelay: 5
Logger.js:155 2025-04-16T14:25:30.193Z [JitsiConference] <new Mm>: End-to-End Encryption is supported
Logger.js:155 2025-04-16T14:25:30.213Z [features/base/dialog] <iC>: Hide dialog:
Logger.js:155 2025-04-16T14:25:30.217Z [JitsiConference] <Mm._doReplaceTrack>: _doReplaceTrack - no JVB JingleSession
Logger.js:155 2025-04-16T14:25:30.218Z [JitsiConference] <Mm._doReplaceTrack>: _doReplaceTrack - no P2P JingleSession
Logger.js:155 2025-04-16T14:25:30.221Z [modules/xmpp/moderator] Sending conference request over XMPP to focus.meet.jitsi
Logger.js:155 2025-04-16T14:25:30.228Z [features/base/tracks] Replace audio track - unmuted
Logger.js:155 2025-04-16T14:25:30.232Z [features/base/redux] <Object.persistState>: redux state persisted. 0a17726d822996fc2445857ab4bc4feb -> 3c2f5e159f5d2230a8b5e1b7f3363b40
Logger.js:155 2025-04-16T14:25:30.247Z [features/base/settings] switched local audio input device to: default
Logger.js:155 2025-04-16T14:25:30.253Z [conference.js] Initialized with 1 local tracks
Logger.js:155 2025-04-16T14:25:30.451Z [modules/RTC/RTCUtils] <Ys.<anonymous>>: Got media constraints: {"video":false,"audio":{"autoGainControl":true,"echoCancellation":true,"noiseSuppression":true,"deviceId":{"exact":"default"}}}
Logger.js:155 2025-04-16T14:25:30.473Z [modules/RTC/RTCUtils] onUserMediaSuccess
TrackVADEmitter.js:111 [Deprecation] The ScriptProcessorNode is deprecated. Use AudioWorkletNode instead. (https://bit.ly/audio-worklet)
_initializeAudioContext @ TrackVADEmitter.js:111
Logger.js:155 2025-04-16T14:25:30.494Z [modules/xmpp/strophe.jingle] getting turn credentials with extdisco:2 failed, trying extdisco:1
r @ Logger.js:155
Logger.js:155 2025-04-16T14:25:30.517Z [modules/xmpp/moderator] <gc._handleSuccess>: Adding focus JID: focus@auth.meet.jitsi
Logger.js:155 2025-04-16T14:25:30.518Z [modules/xmpp/moderator] <gc._handleSuccess>: Authentication enabled: false
Logger.js:155 2025-04-16T14:25:30.524Z [modules/xmpp/moderator] <gc._handleSuccess>: Sip gateway enabled: undefined
Logger.js:155 2025-04-16T14:25:30.524Z [modules/xmpp/moderator] <gc._handleSuccess>: Conference-request successful, ready to join the MUC.
Logger.js:155 2025-04-16T14:25:30.663Z [modules/xmpp/strophe.jingle] getting turn credentials failed
r @ Logger.js:155
Logger.js:155 2025-04-16T14:25:30.663Z [modules/xmpp/strophe.jingle] is mod_turncredentials or similar installed and configured?
r @ Logger.js:155
Logger.js:155 2025-04-16T14:25:30.739Z [modules/xmpp/ChatRoom] <Vc.onPresence>: (TIME) MUC join started: 3734.800000000745
Logger.js:155 2025-04-16T14:25:30.743Z [modules/xmpp/ChatRoom] <Vc.onPresence>: entered rocketchat67ffbdce2d76fbf0bee8459f@muc.meet.jitsi/57d917e3 Object
Logger.js:155 2025-04-16T14:25:30.770Z [conference.js] <fo.<anonymous>>: USER 57d917e3 connected: os
Logger.js:155 2025-04-16T14:25:30.789Z [modules/xmpp/ChatRoom] <Vc.onPresence>: entered rocketchat67ffbdce2d76fbf0bee8459f@muc.meet.jitsi/focus Object
Logger.js:155 2025-04-16T14:25:30.791Z [modules/version/ComponentsVersions] Got focus version: 1.0.1128
Logger.js:155 2025-04-16T14:25:30.794Z [JitsiConference] <Mm._updateProperties>: Audio unmute permissions set by Jicofo to false
Logger.js:155 2025-04-16T14:25:30.796Z [JitsiConference] <Mm._updateProperties>: Video unmute permissions set by Jicofo to false
Logger.js:155 2025-04-16T14:25:30.797Z [modules/xmpp/ChatRoom] <Vc.onPresence>: (TIME) MUC joined: 3794
Logger.js:155 2025-04-16T14:25:30.815Z [features/base/dialog] <iC>: Hide dialog: xX
Logger.js:155 2025-04-16T14:25:30.819Z [features/base/dialog] <iC>: Hide dialog: C9
Logger.js:155 2025-04-16T14:25:30.846Z [conference.js] <fo.<anonymous>>: My role changed, new role: none
Logger.js:155 2025-04-16T14:25:30.865Z [modules/xmpp/ChatRoom] <Vc.onMessage>: Subject is changed to
Logger.js:155 2025-04-16T14:25:30.959Z [modules/xmpp/strophe.jingle] <_l.onJingle>: Found a JSON-encoded element in session-initiate, translating to standard Jingle.
Logger.js:155 2025-04-16T14:25:30.960Z [modules/xmpp/strophe.jingle] <_l.onJingle>: (TIME) received session-initiate: 3955.39999999851
Logger.js:155 2025-04-16T14:25:30.971Z [modules/RTC/TraceablePeerConnection] <new qu>: Using RTCRtpTransceiver#setCodecPreferences for codec selection
Logger.js:155 2025-04-16T14:25:30.972Z [modules/RTC/TraceablePeerConnection] <new qu>: Create new TPC[id=1,type=JVB]
Logger.js:155 2025-04-16T14:25:30.973Z [JitsiConference] <Mm._setBridgeChannel>: SCTP: offered=true, prefered=true
Logger.js:155 2025-04-16T14:25:30.975Z [modules/RTC/TraceablePeerConnection] <qu.addTrack>: TPC[id=1,type=JVB] adding LocalTrack[1,audio]
Logger.js:155 2025-04-16T14:25:31.064Z [modules/xmpp/JingleSessionPC] <fl._sendSessionAccept>: JingleSessionPC[session=JVB,initiator=false,sid=12uiu685o3unv] Sending session-accept
Logger.js:155 2025-04-16T14:25:31.069Z [modules/xmpp/JingleSessionPC] <peerconnection.oniceconnectionstatechange>: (TIME) ICE checking JVB: 4065.10000000149
Logger.js:155 2025-04-16T14:25:31.070Z [modules/xmpp/JingleSessionPC] <peerconnection.onconnectionstatechange>: (TIME) JVB PC state is now connecting (ICE state checking): 4066.300000000745
Logger.js:155 2025-04-16T14:25:31.975Z [modules/xmpp/strophe.jingle] <_l.onJingle>: (TIME) received session-initiate: 4971.300000000745
Logger.js:155 2025-04-16T14:25:31.978Z [modules/RTC/TraceablePeerConnection] <new qu>: Using RTCRtpTransceiver#setCodecPreferences for codec selection
Logger.js:155 2025-04-16T14:25:31.978Z [modules/RTC/TraceablePeerConnection] <new qu>: Create new TPC[id=2,type=P2P]
Logger.js:155 2025-04-16T14:25:31.978Z [modules/RTC/TraceablePeerConnection] <qu.addTrack>: TPC[id=2,type=P2P] adding LocalTrack[1,audio]
Logger.js:155 2025-04-16T14:25:31.985Z [JitsiConference] <Mm.onTransportInfo>: P2P addIceCandidates
Logger.js:155 2025-04-16T14:25:31.988Z [modules/RTC/TraceablePeerConnection] <qu._remoteTrackAdded>: TPC[id=2,type=P2P] Received track event for remote stream[id=57d917e3-audio-0-1,type=audio]
Logger.js:155 2025-04-16T14:25:31.989Z [modules/RTC/TraceablePeerConnection] <qu._createRemoteTrack>: TPC[id=2,type=P2P] creating remote track[endpoint=57d917e3,ssrc=2695471262,type=audio,sourceName=57d917e3-a0]
Logger.js:155 2025-04-16T14:25:31.989Z [JitsiConference] <Mm.onRemoteTrackAdded>: Trying to add remote P2P track, when not in P2P - IGNORED
Logger.js:155 2025-04-16T14:25:32.005Z [modules/xmpp/JingleSessionPC] <fl._sendSessionAccept>: JingleSessionPC[session=P2P,initiator=false,sid=d4521d5251d9] Sending session-accept
Logger.js:155 2025-04-16T14:25:32.988Z [modules/RTC/JitsiRemoteTrack] <Vu.setMute>: Mute RemoteTrack[userID: 57d917e3, type: audio, ssrc: 2695471262, p2p: true, sourceName: 57d917e3-a0, status: {readyState: live, muted: false, enabled: true}]: false
Logger.js:155 2025-04-16T14:25:33.203Z [modules/xmpp/JingleSessionPC] <peerconnection.oniceconnectionstatechange>: (TIME) ICE checking P2P: 6199.60000000149
Logger.js:155 2025-04-16T14:25:33.203Z [modules/xmpp/JingleSessionPC] <peerconnection.onconnectionstatechange>: (TIME) P2P PC state is now connecting (ICE state checking): 6200
Logger.js:155 2025-04-16T14:25:33.208Z [modules/xmpp/JingleSessionPC] <peerconnection.oniceconnectionstatechange>: (TIME) ICE connected P2P: 6204.5
Logger.js:155 2025-04-16T14:25:33.209Z [JitsiConference] <Mm._setP2PStatus>: Peer to peer connection established!
Logger.js:155 2025-04-16T14:25:33.221Z [JitsiConference] <Mm._addRemoteTracks>: Adding remote P2P track: RemoteTrack[userID: 57d917e3, type: audio, ssrc: 2695471262, p2p: true, sourceName: 57d917e3-a0, status: {readyState: live, muted: false, enabled: true}]
Logger.js:155 2025-04-16T14:25:33.237Z [JitsiConference] <Mm._suspendMediaTransferForJvbConnection>: Suspending media transfer over the JVB connection...
Logger.js:155 2025-04-16T14:25:33.237Z [modules/RTC/TraceablePeerConnection] <qu.setMediaTransferActive>: TPC[id=1,type=JVB] Suspending media transfer.
Logger.js:155 2025-04-16T14:25:33.238Z [JitsiConference] <Mm._onIceConnectionEstablished>: Starting remote stats with p2p connection
Logger.js:155 2025-04-16T14:25:33.246Z [modules/xmpp/JingleSessionPC] <peerconnection.onconnectionstatechange>: (TIME) P2P PC state is now connected (ICE state connected): 6242.60000000149
Logger.js:155 2025-04-16T14:25:33.247Z [modules/RTC/JitsiRemoteTrack] <Vu._playCallback>: (TIME) Render audio: 6243.60000000149
Logger.js:155 2025-04-16T14:25:33.247Z [modules/RTC/JitsiRemoteTrack] <Vu._playCallback>: (TIME) TTFM audio: 5955.70000000298
Logger.js:155 2025-04-16T14:25:33.265Z [JitsiConference] Suspended media transfer over the JVB connection !
Logger.js:155 2025-04-16T14:25:33.362Z [modules/xmpp/JingleSessionPC] <fl.setReceiverVideoConstraint>: JingleSessionPC[session=P2P,initiator=false,sid=d4521d5251d9] setReceiverVideoConstraint - constraints: {}
Logger.js:155 2025-04-16T14:25:46.248Z [modules/xmpp/JingleSessionPC] <peerconnection.oniceconnectionstatechange>: (TIME) ICE disconnected JVB: 19244.60000000149
Logger.js:155 2025-04-16T14:25:46.249Z [modules/xmpp/JingleSessionPC] <peerconnection.onconnectionstatechange>: (TIME) JVB PC state is now failed (ICE state disconnected): 19245.699999999255
Logger.js:155 2025-04-16T14:25:47.251Z [JitsiConference] triggering ice restart after 1000
r @ Logger.js:155
Logger.js:155 2025-04-16T14:25:49.430Z [modules/connectivity/IceFailedHandling] <dp._actOnIceFailed>: ICE failed, enableForcedReload: undefined
Logger.js:155 2025-04-16T14:25:49.430Z [modules/connectivity/IceFailedHandling] <dp._actOnIceFailed>: Sending ICE failed - the connection did not recover, ICE state: disconnected
Logger.js:155 2025-04-16T14:25:49.431Z [JitsiConference] <Mm._stopJvbSession>: Stopping stats for jvb connection
Logger.js:155 2025-04-16T14:25:49.432Z [modules/xmpp/JingleSessionPC] <fl.terminate>: JingleSessionPC[session=JVB,initiator=false,sid=12uiu685o3unv] Sending session-terminate
Logger.js:155 2025-04-16T14:25:49.434Z [modules/xmpp/JingleSessionPC] <fl.onTerminated>: JingleSessionPC[session=JVB,initiator=false,sid=12uiu685o3unv] Session terminated undefined undefined
Logger.js:155 2025-04-16T14:25:49.437Z [modules/RTC/TraceablePeerConnection] <qu.close>: TPC[id=1,type=JVB] Closing peerconnection
Logger.js:155 2025-04-16T14:25:49.450Z [modules/RTC/BridgeChannel] <e.onclose>: Channel closed: undefined undefined
r @ Logger.js:155
Logger.js:155 2025-04-16T14:25:49.622Z [JitsiConference] session-terminate for ice restart - done
Logger.js:155 2025-04-16T14:25:49.646Z [modules/xmpp/strophe.jingle] <_l.onJingle>: Found a JSON-encoded element in session-initiate, translating to standard Jingle.
Logger.js:155 2025-04-16T14:25:49.648Z [modules/xmpp/strophe.jingle] <_l.onJingle>: (TIME) received session-initiate: 22643
Logger.js:155 2025-04-16T14:25:49.656Z [modules/RTC/TraceablePeerConnection] <new qu>: Using RTCRtpTransceiver#setCodecPreferences for codec selection
Logger.js:155 2025-04-16T14:25:49.657Z [modules/RTC/TraceablePeerConnection] <new qu>: Create new TPC[id=3,type=JVB]
Logger.js:155 2025-04-16T14:25:49.657Z [JitsiConference] <Mm._setBridgeChannel>: SCTP: offered=true, prefered=true
Logger.js:155 2025-04-16T14:25:49.659Z [modules/RTC/TraceablePeerConnection] <qu.addTrack>: TPC[id=3,type=JVB] adding LocalTrack[1,audio]
Logger.js:155 2025-04-16T14:25:49.701Z [modules/xmpp/JingleSessionPC] <fl._sendSessionAccept>: JingleSessionPC[session=JVB,initiator=false,sid=97sjk3pcpfsj7] Sending session-accept
Logger.js:155 2025-04-16T14:25:49.703Z [modules/xmpp/JingleSessionPC] <peerconnection.oniceconnectionstatechange>: (TIME) ICE checking JVB: 22699.39999999851
Logger.js:155 2025-04-16T14:25:49.703Z [modules/xmpp/JingleSessionPC] <peerconnection.onconnectionstatechange>: (TIME) JVB PC state is now connecting (ICE state checking): 22699.699999999255
Logger.js:155 2025-04-16T14:25:50.296Z [JitsiConference] <Mm._suspendMediaTransferForJvbConnection>: Suspending media transfer over the JVB connection...
Logger.js:155 2025-04-16T14:25:50.297Z [modules/RTC/TraceablePeerConnection] <qu.setMediaTransferActive>: TPC[id=3,type=JVB] Suspending media transfer.
Logger.js:155 2025-04-16T14:25:50.300Z [JitsiConference] Suspended media transfer over the JVB connection !
JingleSessionPC.js:1369 2025-04-16T14:26:04.888Z [modules/xmpp/JingleSessionPC] <peerconnection.oniceconnectionstatechange>: (TIME) ICE disconnected JVB: 37884.699999999255
JingleSessionPC.js:1469 2025-04-16T14:26:04.888Z [modules/xmpp/JingleSessionPC] <peerconnection.onconnectionstatechange>: (TIME) JVB PC state is now failed (ICE state disconnected): 37885.300000000745
JitsiConference.js:2976 2025-04-16T14:26:06.203Z [JitsiConference] triggering ice restart after 1314
r @ Logger.js:155
(anonymous) @ JitsiConference.js:2976
setTimeout
Mm._onIceConnectionFailed @ JitsiConference.js:2975
o.emit @ events.js:153
peerconnection.onconnectionstatechange @ JingleSessionPC.js:1479
peerconnection.onconnectionstatechange @ TraceablePeerConnection.js:401
IceFailedHandling.ts:43 2025-04-16T14:26:08.371Z [modules/connectivity/IceFailedHandling] <dp._actOnIceFailed>: ICE failed, enableForcedReload: undefined
IceFailedHandling.ts:62 2025-04-16T14:26:08.372Z [modules/connectivity/IceFailedHandling] <dp._actOnIceFailed>: Sending ICE failed - the connection did not recover, ICE state: disconnected
JitsiConference.js:3543 2025-04-16T14:26:08.372Z [JitsiConference] <Mm._stopJvbSession>: Stopping stats for jvb connection
JingleSessionPC.js:2382 2025-04-16T14:26:08.373Z [modules/xmpp/JingleSessionPC] <fl.terminate>: JingleSessionPC[session=JVB,initiator=false,sid=97sjk3pcpfsj7] Sending session-terminate
JingleSessionPC.js:1800 2025-04-16T14:26:08.376Z [modules/xmpp/JingleSessionPC] <fl.onTerminated>: JingleSessionPC[session=JVB,initiator=false,sid=97sjk3pcpfsj7] Session terminated undefined undefined
TraceablePeerConnection.js:2395 2025-04-16T14:26:08.379Z [modules/RTC/TraceablePeerConnection] <qu.close>: TPC[id=3,type=JVB] Closing peerconnection
BridgeChannel.ts:423 2025-04-16T14:26:08.387Z [modules/RTC/BridgeChannel] <e.onclose>: Channel closed: undefined undefined
r @ Logger.js:155
e.onclose @ BridgeChannel.ts:423
JitsiConference.js:3549 2025-04-16T14:26:08.593Z [JitsiConference] session-terminate for ice restart - done
strophe.jingle.js:160 2025-04-16T14:26:08.634Z [modules/xmpp/strophe.jingle] <_l.onJingle>: Found a JSON-encoded element in session-initiate, translating to standard Jingle.
strophe.jingle.js:181 2025-04-16T14:26:08.635Z [modules/xmpp/strophe.jingle] <_l.onJingle>: (TIME) received session-initiate: 41630.89999999851
TraceablePeerConnection.js:270 2025-04-16T14:26:08.639Z [modules/RTC/TraceablePeerConnection] <new qu>: Using RTCRtpTransceiver#setCodecPreferences for codec selection
TraceablePeerConnection.js:434 2025-04-16T14:26:08.639Z [modules/RTC/TraceablePeerConnection] <new qu>: Create new TPC[id=4,type=JVB]
JitsiConference.js:2319 2025-04-16T14:26:08.639Z [JitsiConference] <Mm._setBridgeChannel>: SCTP: offered=true, prefered=true
TraceablePeerConnection.js:1289 2025-04-16T14:26:08.640Z [modules/RTC/TraceablePeerConnection] <qu.addTrack>: TPC[id=4,type=JVB] adding LocalTrack[1,audio]
JingleSessionPC.js:905 2025-04-16T14:26:08.676Z [modules/xmpp/JingleSessionPC] <fl._sendSessionAccept>: JingleSessionPC[session=JVB,initiator=false,sid=c81kn4gr8ibbo] Sending session-accept
JingleSessionPC.js:1369 2025-04-16T14:26:08.679Z [modules/xmpp/JingleSessionPC] <peerconnection.oniceconnectionstatechange>: (TIME) ICE checking JVB: 41676.10000000149
JingleSessionPC.js:1469 2025-04-16T14:26:08.680Z [modules/xmpp/JingleSessionPC] <peerconnection.onconnectionstatechange>: (TIME) JVB PC state is now connecting (ICE state checking): 41676.800000000745
JitsiConference.js:3412 2025-04-16T14:26:09.278Z [JitsiConference] <Mm._suspendMediaTransferForJvbConnection>: Suspending media transfer over the JVB connection...
TraceablePeerConnection.js:2238 2025-04-16T14:26:09.279Z [modules/RTC/TraceablePeerConnection] <qu.setMediaTransferActive>: TPC[id=4,type=JVB] Suspending media transfer.
JitsiConference.js:3415 2025-04-16T14:26:09.285Z [JitsiConference] Suspended media transfer over the JVB connection !
JingleSessionPC.js:1369 2025-04-16T14:26:23.857Z [modules/xmpp/JingleSessionPC] <peerconnection.oniceconnectionstatechange>: (TIME) ICE disconnected JVB: 56853.5
JingleSessionPC.js:1469 2025-04-16T14:26:23.857Z [modules/xmpp/JingleSessionPC] <peerconnection.onconnectionstatechange>: (TIME) JVB PC state is now failed (ICE state disconnected): 56853.89999999851
JitsiConference.js:2976 2025-04-16T14:26:25.219Z [JitsiConference] triggering ice restart after 1354
r @ Logger.js:155
(anonymous) @ JitsiConference.js:2976
setTimeout
Mm._onIceConnectionFailed @ JitsiConference.js:2975
o.emit @ events.js:153
peerconnection.onconnectionstatechange @ JingleSessionPC.js:1479
peerconnection.onconnectionstatechange @ TraceablePeerConnection.js:401
IceFailedHandling.ts:43 2025-04-16T14:26:27.390Z [modules/connectivity/IceFailedHandling] <dp._actOnIceFailed>: ICE failed, enableForcedReload: undefined
IceFailedHandling.ts:62 2025-04-16T14:26:27.391Z [modules/connectivity/IceFailedHandling] <dp._actOnIceFailed>: Sending ICE failed - the connection did not recover, ICE state: disconnected
JitsiConference.js:3543 2025-04-16T14:26:27.391Z [JitsiConference] <Mm._stopJvbSession>: Stopping stats for jvb connection
JingleSessionPC.js:2382 2025-04-16T14:26:27.392Z [modules/xmpp/JingleSessionPC] <fl.terminate>: JingleSessionPC[session=JVB,initiator=false,sid=c81kn4gr8ibbo] Sending session-terminate
JingleSessionPC.js:1800 2025-04-16T14:26:27.395Z [modules/xmpp/JingleSessionPC] <fl.onTerminated>: JingleSessionPC[session=JVB,initiator=false,sid=c81kn4gr8ibbo] Session terminated undefined undefined
TraceablePeerConnection.js:2395 2025-04-16T14:26:27.398Z [modules/RTC/TraceablePeerConnection] <qu.close>: TPC[id=4,type=JVB] Closing peerconnection
BridgeChannel.ts:423 2025-04-16T14:26:27.406Z [modules/RTC/BridgeChannel] <e.onclose>: Channel closed: undefined undefined
r @ Logger.js:155
e.onclose @ BridgeChannel.ts:423
JitsiConference.js:3549 2025-04-16T14:26:27.591Z [JitsiConference] session-terminate for ice restart - done
strophe.jingle.js:160 2025-04-16T14:26:27.625Z [modules/xmpp/strophe.jingle] <_l.onJingle>: Found a JSON-encoded element in session-initiate, translating to standard Jingle.
strophe.jingle.js:181 2025-04-16T14:26:27.626Z [modules/xmpp/strophe.jingle] <_l.onJingle>: (TIME) received session-initiate: 60621.300000000745
TraceablePeerConnection.js:270 2025-04-16T14:26:27.629Z [modules/RTC/TraceablePeerConnection] <new qu>: Using RTCRtpTransceiver#setCodecPreferences for codec selection
TraceablePeerConnection.js:434 2025-04-16T14:26:27.629Z [modules/RTC/TraceablePeerConnection] <new qu>: Create new TPC[id=5,type=JVB]
JitsiConference.js:2319 2025-04-16T14:26:27.630Z [JitsiConference] <Mm._setBridgeChannel>: SCTP: offered=true, prefered=true
TraceablePeerConnection.js:1289 2025-04-16T14:26:27.631Z [modules/RTC/TraceablePeerConnection] <qu.addTrack>: TPC[id=5,type=JVB] adding LocalTrack[1,audio]
JingleSessionPC.js:905 2025-04-16T14:26:27.664Z [modules/xmpp/JingleSessionPC] <fl._sendSessionAccept>: JingleSessionPC[session=JVB,initiator=false,sid=f0b3ulb1nch57] Sending session-accept
JingleSessionPC.js:1369 2025-04-16T14:26:27.667Z [modules/xmpp/JingleSessionPC] <peerconnection.oniceconnectionstatechange>: (TIME) ICE checking JVB: 60664.10000000149
JingleSessionPC.js:1469 2025-04-16T14:26:27.668Z [modules/xmpp/JingleSessionPC] <peerconnection.onconnectionstatechange>: (TIME) JVB PC state is now connecting (ICE state checking): 60664.89999999851
JitsiConference.js:3412 2025-04-16T14:26:28.548Z [JitsiConference] <Mm._suspendMediaTransferForJvbConnection>: Suspending media transfer over the JVB connection...
TraceablePeerConnection.js:2238 2025-04-16T14:26:28.549Z [modules/RTC/TraceablePeerConnection] <qu.setMediaTransferActive>: TPC[id=5,type=JVB] Suspending media transfer.
JitsiConference.js:3415 2025-04-16T14:26:28.550Z [JitsiConference] Suspended media transfer over the JVB connection !
JingleSessionPC.js:1369 2025-04-16T14:26:42.785Z [modules/xmpp/JingleSessionPC] <peerconnection.oniceconnectionstatechange>: (TIME) ICE disconnected JVB: 75781.5
JingleSessionPC.js:1469 2025-04-16T14:26:42.786Z [modules/xmpp/JingleSessionPC] <peerconnection.onconnectionstatechange>: (TIME) JVB PC state is now failed (ICE state disconnected): 75782.80000000075
JitsiConference.js:2981 2025-04-16T14:26:42.787Z [JitsiConference] <Mm._onIceConnectionFailed>: ICE failed, force reloading the conference after failed attempts to re-establish ICE
r @ Logger.js:155
Mm._onIceConnectionFailed @ JitsiConference.js:2981
o.emit @ events.js:153
peerconnection.onconnectionstatechange @ JingleSessionPC.js:1479
peerconnection.onconnectionstatechange @ TraceablePeerConnection.js:401
actions.ts:17 2025-04-16T14:26:42.796Z [features/base/dialog] <iC>: Hide dialog: EX
actions.ts:17 2025-04-16T14:26:42.801Z [features/base/dialog] <iC>: Hide dialog: C9
actions.ts:17 2025-04-16T14:26:42.818Z [features/base/dialog] <iC>: Hide dialog:
AbstractPageReloadOverlay.tsx:80 2025-04-16T14:26:42.832Z [features/overlay] <b3.componentDidMount>: The conference will be reloaded after 26 seconds.
ChatRoom.js:319 2025-04-16T14:26:42.846Z [modules/xmpp/ChatRoom] <Vc.doLeave>: do leave rocketchat67ffbdce2d76fbf0bee8459f@muc.meet.jitsi/7ce1d9b8
conference.js:278 2025-04-16T14:26:42.847Z [conference.js] <w2._onConferenceFailed>: CONFERENCE FAILED: conference.iceFailed
a @ Logger.js:155
_onConferenceFailed @ conference.js:278
o.emit @ events.js:153
Mm._onIceConnectionFailed @ JitsiConference.js:2989
o.emit @ events.js:153
peerconnection.onconnectionstatechange @ JingleSessionPC.js:1479
peerconnection.onconnectionstatechange @ TraceablePeerConnection.js:401
TraceablePeerConnection.js:2395 2025-04-16T14:26:42.854Z [modules/RTC/TraceablePeerConnection] <qu.close>: TPC[id=5,type=JVB] Closing peerconnection
TraceablePeerConnection.js:1079 2025-04-16T14:26:42.856Z [modules/RTC/TraceablePeerConnection] <qu._removeRemoteTrack>: TPC[id=2,type=P2P] Removing remote track stream[id=57d917e3-audio-0-1,trackId=3322b01a-1c20-46dc-af5e-71bad129a565]
TraceablePeerConnection.js:2395 2025-04-16T14:26:42.861Z [modules/RTC/TraceablePeerConnection] <qu.close>: TPC[id=2,type=P2P] Closing peerconnection
xmpp.js:312 2025-04-16T14:26:42.864Z [modules/xmpp/xmpp] <kl.connectionHandler>: (TIME) Strophe disconnecting: 75860.60000000149
strophe.ping.ts:170 2025-04-16T14:26:42.876Z [modules/xmpp/strophe.ping] <cc.stopInterval>: Ping interval cleared
xmpp.js:312 2025-04-16T14:26:42.877Z [modules/xmpp/xmpp] <kl.connectionHandler>: (TIME) Strophe disconnected: 75873.39999999851
PersistenceRegistry.ts:61 2025-04-16T14:26:43.365Z [features/base/redux] <Object.persistState>: redux state persisted. 3c2f5e159f5d2230a8b5e1b7f3363b40 -> d7e39fced934d88b8acc473e0bef7126
```
#### Web logs (docker):
```
[s6-init] making user provided files available at /var/run/s6/etc...exited 0.
[s6-init] ensuring user provided files have correct perms...exited 0.
[fix-attrs.d] applying ownership & permissions fixes...
[fix-attrs.d] done.
[cont-init.d] executing container initialization scripts...
[cont-init.d] 01-set-timezone: executing...
[cont-init.d] 01-set-timezone: exited 0.
[cont-init.d] 10-config: executing...
Using Nginx resolver: =127.0.0.11=
[cont-init.d] 10-config: exited 0.
[cont-init.d] done.
[services.d] starting services
[services.d] done.
[16/Apr/2025:14:39:29 +0000] "GET /RocketChat67ffbdce2d76fbf0bee8459f HTTP/1.1" 200 8752 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:30 +0000] "GET /libs/excalidraw-assets/vendor-75e22c20f1d603abdfc9.js HTTP/1.1" 200 187169 "https://meet.mycompany.com/RocketChat67ffbdce2d76fbf0bee8459f" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:30 +0000] "GET /sounds/reactions-thumbs-up.mp3 HTTP/1.1" 206 10212 "https://meet.mycompany.com/RocketChat67ffbdce2d76fbf0bee8459f" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:30 +0000] "GET /sounds/reactions-applause.mp3 HTTP/1.1" 206 9874 "https://meet.mycompany.com/RocketChat67ffbdce2d76fbf0bee8459f" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:30 +0000] "GET /sounds/reactions-laughter.mp3 HTTP/1.1" 206 10341 "https://meet.mycompany.com/RocketChat67ffbdce2d76fbf0bee8459f" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:30 +0000] "GET /sounds/reactions-surprise.mp3 HTTP/1.1" 206 9094 "https://meet.mycompany.com/RocketChat67ffbdce2d76fbf0bee8459f" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:31 +0000] "GET /pwa-worker.js HTTP/1.1" 200 1511 "https://meet.mycompany.com/pwa-worker.js" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:43 +0000] "GET /RocketChat67ffc1252d76fbf0bee845a7 HTTP/1.1" 200 8752 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:44 +0000] "GET /libs/excalidraw-assets/vendor-75e22c20f1d603abdfc9.js HTTP/1.1" 200 187169 "https://meet.mycompany.com/RocketChat67ffc1252d76fbf0bee845a7" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:45 +0000] "GET /sounds/reactions-thumbs-up.mp3 HTTP/1.1" 206 10212 "https://meet.mycompany.com/RocketChat67ffc1252d76fbf0bee845a7" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:45 +0000] "GET /sounds/reactions-applause.mp3 HTTP/1.1" 206 9874 "https://meet.mycompany.com/RocketChat67ffc1252d76fbf0bee845a7" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:45 +0000] "GET /sounds/reactions-laughter.mp3 HTTP/1.1" 206 10341 "https://meet.mycompany.com/RocketChat67ffc1252d76fbf0bee845a7" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:45 +0000] "GET /sounds/reactions-boo.mp3 HTTP/1.1" 206 9457 "https://meet.mycompany.com/RocketChat67ffc1252d76fbf0bee845a7" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:45 +0000] "GET /sounds/reactions-crickets.mp3 HTTP/1.1" 206 14163 "https://meet.mycompany.com/RocketChat67ffc1252d76fbf0bee845a7" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:45 +0000] "GET /sounds/reactions-love.mp3 HTTP/1.1" 206 15528 "https://meet.mycompany.com/RocketChat67ffc1252d76fbf0bee845a7" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:45 +0000] "GET /sounds/reactions-surprise.mp3 HTTP/1.1" 206 9094 "https://meet.mycompany.com/RocketChat67ffc1252d76fbf0bee845a7" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:45 +0000] "GET /sounds/reactions-laughter.mp3 HTTP/1.1" 206 10341 "https://meet.mycompany.com/RocketChat67ffc1252d76fbf0bee845a7" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:46 +0000] "GET /libs/lib-jitsi-meet.e2ee-worker.js HTTP/1.1" 200 6020 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:46 +0000] "GET /RocketChat67ffc1252d76fbf0bee845a7 HTTP/1.1" 200 8752 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:47 +0000] "GET /pwa-worker.js HTTP/1.1" 200 1511 "https://meet.mycompany.com/pwa-worker.js" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:47 +0000] "GET /libs/excalidraw-assets/vendor-75e22c20f1d603abdfc9.js HTTP/1.1" 200 187169 "https://meet.mycompany.com/RocketChat67ffc1252d76fbf0bee845a7" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:47 +0000] "GET /sounds/reactions-thumbs-up.mp3 HTTP/1.1" 206 10212 "https://meet.mycompany.com/RocketChat67ffc1252d76fbf0bee845a7" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:47 +0000] "GET /sounds/reactions-laughter.mp3 HTTP/1.1" 206 10341 "https://meet.mycompany.com/RocketChat67ffc1252d76fbf0bee845a7" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:47 +0000] "GET /sounds/reactions-applause.mp3 HTTP/1.1" 206 9874 "https://meet.mycompany.com/RocketChat67ffc1252d76fbf0bee845a7" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:47 +0000] "GET /sounds/reactions-surprise.mp3 HTTP/1.1" 206 9094 "https://meet.mycompany.com/RocketChat67ffc1252d76fbf0bee845a7" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:48 +0000] "GET /sounds/reactions-thumbs-up.mp3 HTTP/1.1" 206 10212 "https://meet.mycompany.com/RocketChat67ffc1252d76fbf0bee845a7" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:48 +0000] "GET /sounds/reactions-laughter.mp3 HTTP/1.1" 206 10341 "https://meet.mycompany.com/RocketChat67ffc1252d76fbf0bee845a7" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:48 +0000] "GET /sounds/reactions-applause.mp3 HTTP/1.1" 206 9874 "https://meet.mycompany.com/RocketChat67ffc1252d76fbf0bee845a7" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:48 +0000] "GET /sounds/reactions-surprise.mp3 HTTP/1.1" 206 9094 "https://meet.mycompany.com/RocketChat67ffc1252d76fbf0bee845a7" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:50 +0000] "GET /libs/lib-jitsi-meet.e2ee-worker.js HTTP/1.1" 200 6020 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:39:50 +0000] "GET /pwa-worker.js HTTP/1.1" 200 1511 "https://meet.mycompany.com/pwa-worker.js" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
2025/04/16 14:41:04 [error] 286#286: *18 recv() failed (104: Connection reset by peer) while proxying upgraded connection, client: 10.0.3.57, server: _, request: "GET /xmpp-websocket?room=rocketchat67ffc1252d76fbf0bee845a7 HTTP/1.1", upstream: "http://172.18.0.2:5280/xmpp-websocket?prefix=&room=rocketchat67ffc1252d76fbf0bee845a7", host: "meet.mycompany.com"
[16/Apr/2025:14:41:04 +0000] "GET /xmpp-websocket?room=rocketchat67ffc1252d76fbf0bee845a7 HTTP/1.1" 101 66108 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:41:08 +0000] "GET /xmpp-websocket?room=rocketchat67ffc1252d76fbf0bee845a7 HTTP/1.1" 200 375 "https://meet.mycompany.com/RocketChat67ffc1252d76fbf0bee845a7" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:41:11 +0000] "GET /xmpp-websocket?room=rocketchat67ffc1252d76fbf0bee845a7 HTTP/1.1" 101 39070 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:41:15 +0000] "GET / HTTP/1.1" 200 8752 "https://meet.mycompany.com/RocketChat67ffc1252d76fbf0bee845a7" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:41:15 +0000] "GET /libs/excalidraw-assets/vendor-75e22c20f1d603abdfc9.js HTTP/1.1" 200 187169 "https://meet.mycompany.com/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:41:15 +0000] "GET /images/app-store-badge.png HTTP/1.1" 200 2091 "https://meet.mycompany.com/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:41:15 +0000] "GET /images/google-play-badge.png HTTP/1.1" 200 2729 "https://meet.mycompany.com/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:41:15 +0000] "GET /images/f-droid-badge.png HTTP/1.1" 200 4058 "https://meet.mycompany.com/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:41:15 +0000] "GET /sounds/reactions-thumbs-up.mp3 HTTP/1.1" 206 10212 "https://meet.mycompany.com/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:41:16 +0000] "GET /sounds/reactions-applause.mp3 HTTP/1.1" 206 9874 "https://meet.mycompany.com/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:41:16 +0000] "GET /sounds/reactions-laughter.mp3 HTTP/1.1" 206 10341 "https://meet.mycompany.com/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:41:16 +0000] "GET /sounds/reactions-surprise.mp3 HTTP/1.1" 206 9094 "https://meet.mycompany.com/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:41:16 +0000] "GET /images/welcome-background.png HTTP/1.1" 200 730077 "https://meet.mycompany.com/css/all.css?v=8542" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
[16/Apr/2025:14:41:18 +0000] "GET /pwa-worker.js HTTP/1.1" 200 1511 "https://meet.mycompany.com/pwa-worker.js" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36"
```