You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
444 B
20 lines
444 B
rtmp { |
|
# abre nginx para escuchar por el puerto |
|
server { |
|
listen 1935; |
|
chunk_size 4096; |
|
# dale un nombre a tu aplicacion |
|
application entrada { |
|
live on; |
|
# enciende HLS |
|
hls on; |
|
hls_path /var/www/html/canal/; |
|
# ajustes de hls |
|
hls_fragment 3; |
|
hls_playlist_length 60; |
|
# para bloquear el directo |
|
# quita el comentario de la línea siguiente |
|
# deny play all; |
|
} |
|
} |
|
}
|
|
|