parent
f3970711c6
commit
6b69268edd
17 changed files with 144 additions and 29 deletions
@ -0,0 +1 @@ |
||||
{{ jitsi_confmapper_conf | to_nice_json }} |
@ -0,0 +1,19 @@ |
||||
[Unit] |
||||
Description=Jitsi Conference Mapper |
||||
After=network.target |
||||
|
||||
[Service] |
||||
Type=simple |
||||
User={{ jitsi_user }} |
||||
Group={{ jitsi_user }} |
||||
PrivateTmp=true |
||||
PrivateDevices=true |
||||
ProtectHome=true |
||||
ProtectSystem=full |
||||
Restart=on-failure |
||||
StartLimitInterval=0 |
||||
RestartSec=30 |
||||
ExecStart={{ jitsi_root_dir }}/confmapper/daemon.py |
||||
|
||||
[Install] |
||||
WantedBy=multi-user.target |
@ -1,7 +1,19 @@ |
||||
org.jitsi.impl.neomedia.transform.srtp.SRTPCryptoContext.checkReplay=false |
||||
org.jitsi.videobridge.TCP_HARVESTER_PORT={{ jitsi_videobridge_harvester_port }} |
||||
org.ice4j.ipv6.DISABLED=true |
||||
org.ice4j.ice.harvest.DISABLE_AWS_HARVESTER=true |
||||
{% if jitsi_external_ip is defined %} |
||||
org.ice4j.ice.harvest.NAT_HARVESTER_LOCAL_ADDRESS={{ ansible_default_ipv4.address }} |
||||
org.ice4j.ice.harvest.NAT_HARVESTER_PUBLIC_ADDRESS={{ jitsi_external_ip }} |
||||
{% endif %} |
||||
|
||||
org.jitsi.videobridge.ENABLE_STATISTICS=true |
||||
org.jitsi.videobridge.STATISTICS_TRANSPORT=muc |
||||
|
||||
org.jitsi.videobridge.xmpp.user.xmppserver1.HOSTNAME={{ jitsi_xmpp_server }} |
||||
org.jitsi.videobridge.xmpp.user.xmppserver1.DOMAIN={{ jitsi_videobridge_xmpp_domain }} |
||||
org.jitsi.videobridge.xmpp.user.xmppserver1.USERNAME={{ jitsi_videobridge_xmpp_user }} |
||||
org.jitsi.videobridge.xmpp.user.xmppserver1.PASSWORD={{ jitsi_videobridge_xmpp_pass }} |
||||
org.jitsi.videobridge.xmpp.user.xmppserver1.MUC_JIDS=JvbBrewery@internal.{{ jitsi_auth_domain }} |
||||
org.jitsi.videobridge.xmpp.user.xmppserver1.MUC_NICKNAME={{ inventory_hostname | to_uuid }} |
||||
|
||||
|
@ -1,7 +1,3 @@ |
||||
JVB_HOSTNAME={{ jitsi_domain }} |
||||
JVB_HOST={{ jitsi_xmpp_server }} |
||||
JVB_PORT={{ jitsi_xmpp_component_port }} |
||||
JVB_SECRET='{{ jitsi_videobridge_xmpp_secret }}' |
||||
JVB_OPTS="--apis=xmpp,rest" |
||||
JVB_OPTS="--apis=rest" |
||||
JAVA_SYS_PROPS="-Dnet.java.sip.communicator.SC_HOME_DIR_LOCATION={{ jitsi_root_dir }}/etc -Dnet.java.sip.communicator.SC_HOME_DIR_NAME=videobridge" |
||||
|
||||
|
Loading…
Reference in new issue