diff --git a/drop/compose.yaml b/drop/compose.yaml index c0e36ae..3b9b24d 100644 --- a/drop/compose.yaml +++ b/drop/compose.yaml @@ -3,12 +3,15 @@ services: image: lscr.io/linuxserver/pairdrop:latest container_name: ${DROP_COMPOSE_PROJECT_NAME}_app restart: unless-stopped + volumes: + - ./drop/rtc_config.json:/config/rtc_config.json:ro environment: PUID: 1000 PGID: 1000 TZ: ${TIMEZONE:-Europe/Berlin} RATE_LIMIT: true WS_FALLBACK: false + RTC_CONFIG: /config/rtc_config.json networks: - compose_network labels: diff --git a/drop/rtc_config.json b/drop/rtc_config.json new file mode 100644 index 0000000..a956ccf --- /dev/null +++ b/drop/rtc_config.json @@ -0,0 +1,20 @@ +{ + "sdpSemantics": "unified-plan", + "iceServers": [ + { + "urls": "stun:stun.l.google.com:19302" + }, + { + "urls": "stun:stun1.l.google.com:19302" + }, + { + "urls": "stun:stun2.l.google.com:19302" + }, + { + "urls": "stun:stun3.l.google.com:19302" + }, + { + "urls": "stun:stun4.l.google.com:19302" + } + ] +}