mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-23 05:58:49 +08:00
Merge pull request #3000 from nextcloud/enh/noid/allow-configure-hpb-domain
talk-recording - allow to set hpb_domain and nc_domain independently
This commit is contained in:
commit
400ba74f97
1 changed files with 5 additions and 1 deletions
|
@ -12,6 +12,10 @@ elif [ -z "$INTERNAL_SECRET" ]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -z "$HPB_DOMAIN" ]; then
|
||||||
|
export HPB_DOMAIN="$NC_DOMAIN"
|
||||||
|
fi
|
||||||
|
|
||||||
cat << RECORDING_CONF > "/conf/recording.conf"
|
cat << RECORDING_CONF > "/conf/recording.conf"
|
||||||
[logs]
|
[logs]
|
||||||
# 30 means Warning
|
# 30 means Warning
|
||||||
|
@ -40,7 +44,7 @@ skipverify = ${SKIP_VERIFY}
|
||||||
signalings = signaling-1
|
signalings = signaling-1
|
||||||
|
|
||||||
[signaling-1]
|
[signaling-1]
|
||||||
url = ${HPB_PROTOCOL}://${NC_DOMAIN}${HPB_PATH}
|
url = ${HPB_PROTOCOL}://${HPB_DOMAIN}${HPB_PATH}
|
||||||
internalsecret = ${INTERNAL_SECRET}
|
internalsecret = ${INTERNAL_SECRET}
|
||||||
|
|
||||||
[ffmpeg]
|
[ffmpeg]
|
||||||
|
|
Loading…
Reference in a new issue