1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jitsi_ynh.git synced 2024-09-03 19:35:57 +02:00

Fix port in sip-communicator.properties

This commit is contained in:
yalh76 2019-07-18 21:18:39 +02:00
parent 8c65079213
commit 92a4a0e0bc
2 changed files with 2 additions and 1 deletions

View file

@ -1,2 +1,2 @@
org.jitsi.impl.neomedia.transform.srtp.SRTPCryptoContext.checkReplay=false org.jitsi.impl.neomedia.transform.srtp.SRTPCryptoContext.checkReplay=false
org.jitsi.videobridge.TCP_HARVESTER_PORT=4443 org.jitsi.videobridge.TCP_HARVESTER_PORT=__PORT__

View file

@ -174,6 +174,7 @@ ynh_script_progression --message="Building Jitsi-Videobridge..." --time --weight
mkdir -p "$final_path/.sip-communicator" mkdir -p "$final_path/.sip-communicator"
cp ../conf/sip-communicator.properties "$final_path/.sip-communicator/sip-communicator.properties" cp ../conf/sip-communicator.properties "$final_path/.sip-communicator/sip-communicator.properties"
ynh_replace_string --match_string="__PORT__" --replace_string="$port" --target_file="$final_path/.sip-communicator/sip-communicator.properties"
chown -R $app: $final_path chown -R $app: $final_path
#================================================= #=================================================