2020-03-22 18:01:54 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-03-22 18:14:16 +01:00
|
|
|
update-ca-certificates -f
|
|
|
|
|
2021-01-20 15:44:42 +01:00
|
|
|
exec java \
|
|
|
|
-Djdk.tls.ephemeralDHKeySize=2048 \
|
2021-01-28 17:02:10 +01:00
|
|
|
-Djava.util.logging.config.file=/usr/share/jicofo/lib/logging.properties \
|
|
|
|
-Dconfig.file=/etc/jitsi/jicofo.conf \
|
2021-01-20 15:44:42 +01:00
|
|
|
-cp "/usr/share/jicofo/*:/usr/share/jicofo/lib/*" \
|
2021-01-28 17:52:41 +01:00
|
|
|
org.jitsi.jicofo.Main
|