Expose whether cluster mode is enabled over /api/instance/config

pull/2/head
knotteye 4 years ago
parent 01744df3cd
commit ab9a9b4585
  1. 1
      docs/REST.md
  2. 1
      src/http.ts

@ -32,6 +32,7 @@ Configuration of the instance relating to media
```
{
rtmp: {
cluster: false,
port: 1935,
ping_timeout: 60
},

@ -168,6 +168,7 @@ async function initAPI() {
app.get('/api/instance/config', (req, res) => {
res.json({
rtmp: {
cluster: config['rtmp']['cluster'],
port: config['rtmp']['port'],
ping_timeout: config['rtmp']['ping_timeout']
},