mirror of
https://github.com/YunoHost-Apps/jitsi_ynh.git
synced 2024-09-03 19:35:57 +02:00
de61d69b31
* add max video member parameter to set max memory usage * add max memory usage * add VIDEOBRIDGE_MAX_MEMORY config * Update manifest.json * Update manifest.json * add max_memory parameter * add max memory unit * add max memory unit * add max member test value * Update manifest.json * Update manifest.json * Update jitsi-jicofo-config * Update jitsi-videobridge.config * Update install * Update install * Update install * Update upgrade * Update restore * Create config_panel.toml * Update config_panel.toml * Update config_panel.toml * fix bug * Create config * Update config_panel.toml * Update config * fix cannot restart service "" * Update config * change max users to max memory for better undertand * change max user to max memory for better understand * Update config_panel.toml edit help text * Update config * max_memory not needed during restore * remove max_memory question during install * default max_memory reduced * Cleanup * adding max_memory informations * Auto-update README * typo Co-authored-by: yalh76 <yalh@yahoo.com> Co-authored-by: yunohost-bot <yunohost@yunohost.org>
24 lines
979 B
Text
24 lines
979 B
Text
# Jitsi Conference Focus settings
|
|
# sets the host name of the XMPP server
|
|
JICOFO_HOST=127.0.0.1
|
|
|
|
# sets the XMPP domain (default: none)
|
|
JICOFO_HOSTNAME=__DOMAIN__
|
|
|
|
# sets the XMPP domain name to use for XMPP user logins
|
|
JICOFO_AUTH_DOMAIN=auth.__DOMAIN__
|
|
|
|
# sets the username to use for XMPP user logins
|
|
JICOFO_AUTH_USER=__FOCUS_USER__
|
|
|
|
# sets the password to use for XMPP user logins
|
|
JICOFO_AUTH_PASSWORD=__FOCUS_PASSWORD__
|
|
|
|
# extra options to pass to the jicofo daemon
|
|
JICOFO_OPTS=""
|
|
|
|
# set the max memory used during VM alocation
|
|
JICOFO_MAX_MEMORY=__MAX_MEMORY__m
|
|
|
|
# adds java system props that are passed to jicofo (default are for home and logging config file)
|
|
JAVA_SYS_PROPS="-Dconfig.file=/etc/__APP__/jicofo/jicofo.conf -Dnet.java.sip.communicator.SC_HOME_DIR_LOCATION=/etc/__APP__ -Dnet.java.sip.communicator.SC_HOME_DIR_NAME=jicofo -Dnet.java.sip.communicator.SC_LOG_DIR_LOCATION=/var/log/__APP__ -Djava.util.logging.config.file=/etc/__APP__/jicofo/logging.properties"
|