mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-21 18:06:36 +02:00
update
This commit is contained in:
parent
6d29fe832d
commit
08ea679644
@ -1,3 +1,5 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
const NodeMediaServer = require('node-media-server');
|
||||
|
||||
const config = {
|
||||
@ -6,16 +8,17 @@ const config = {
|
||||
chunk_size: 60000,
|
||||
gop_cache: true,
|
||||
ping: 30,
|
||||
ping_timeout: 60
|
||||
ping_timeout: 60,
|
||||
},
|
||||
http: {
|
||||
port: 8000,
|
||||
allow_origin: '*'
|
||||
allow_origin: '*',
|
||||
api: true,
|
||||
},
|
||||
auth: {
|
||||
api : true,
|
||||
api_user: 'admin',
|
||||
api_pass: 'admin',
|
||||
api: true,
|
||||
api_user: process.env.USERNAME || 'admin',
|
||||
api_pass: process.env.PASSWORD || 'admin',
|
||||
},
|
||||
};
|
||||
|
||||
|
@ -5,4 +5,7 @@ services:
|
||||
ports:
|
||||
- "1935:1935"
|
||||
- "8000:8000"
|
||||
environment:
|
||||
- USERNAME=admin
|
||||
- PASSWORD=admin
|
||||
restart: unless-stopped
|
||||
|
Loading…
Reference in New Issue
Block a user