node-media-server
Version:
A Node.js implementation of RTMP Server
39 lines • 816 B
JSON
{
"bind": "0.0.0.0",
"notify": {
"url": ""
},
"auth": {
"play": false,
"publish": false,
"secret": "nodemedia2017privatekey",
"jwt": {
"expiresIn": "24h",
"refreshExpiresIn": "7d",
"algorithm": "HS256",
"users": [
{
"username": "admin",
"password": "admin-default-password-change-me",
"role": "admin"
}
]
}
},
"rtmp": {
"port": 1935
},
"rtmps": {
"port": 1936,
"key": "./key.pem",
"cert": "./cert.pem"
},
"http": {
"port": 8000
},
"https": {
"port": 8443,
"key": "./key.pem",
"cert": "./cert.pem"
}
}