Last active
December 22, 2015 19:09
-
-
Save Thermionix/6518024 to your computer and use it in GitHub Desktop.
jitsi videobridge upstart
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/init/videobridge.conf | |
description "jitsi videobridge" | |
start on (net-device-up | |
and local-filesystems | |
and runlevel [2345]) | |
stop on shutdown | |
exec start-stop-daemon --start \ | |
--make-pidfile --pidfile /var/run/videobridge.pid \ | |
--exec /opt/jitsi-videobridge/jvb.sh \ | |
-- --secret=componentpassword >> /var/log/videobridge.log 2>&1 | |
respawn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment