mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-08 22:57:55 +08:00
77dbc79115
``` Compiler: gcc libsrtp version: 2.x SSL/crypto library: OpenSSL DTLS set-timeout: not available Mutex implementation: GMutex (native futex on Linux) DataChannels support: no Recordings post-processor: no TURN REST API client: no Doxygen documentation: no Transports: REST (HTTP/HTTPS): no WebSockets: no RabbitMQ: no MQTT: no Unix Sockets: yes Nanomsg: no Plugins: Echo Test: yes Streaming: yes Video Call: yes SIP Gateway: no NoSIP (RTP Bridge): yes Audio Bridge: no Video Room: yes Voice Mail: no Record&Play: yes Text Room: yes Lua Interpreter: no Duktape Interpreter: no Event handlers: Sample event handler: no WebSocket ev. handler: no RabbitMQ event handler:no MQTT event handler: no Nanomsg event handler: no GELF event handler: yes External loggers: JSON file logger: no JavaScript modules: no ``` Signed-off-by: Zoey <zoey@z0ey.de>
37 lines
1 KiB
Text
37 lines
1 KiB
Text
[supervisord]
|
|
nodaemon=true
|
|
logfile=/var/log/supervisord/supervisord.log
|
|
pidfile=/var/run/supervisord/supervisord.pid
|
|
childlogdir=/var/log/supervisord/
|
|
logfile_maxbytes=50MB
|
|
logfile_backups=10
|
|
loglevel=error
|
|
|
|
[program:turnserver]
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
command=turnserver -c /conf/turnserver.conf
|
|
|
|
[program:nats-server]
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
command=nats-server -c /etc/nats.conf
|
|
|
|
[program:janus]
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
# debug-level 3 means warning
|
|
command=janus --config=/usr/local/etc/janus/janus.jcfg --disable-colors --log-stdout --full-trickle --debug-level 3
|
|
|
|
[program:signaling]
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
command=nextcloud-spreed-signaling -config /conf/signaling.conf
|