Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ RUN cd /tmp && \
./configure \
--prefix=/opt/nginx \
--with-http_ssl_module \
--with-cc-opt="-Wimplicit-fallthrough=0" \
--add-module=../nginx-rtmp-module && \
make && \
make install
Expand Down
3 changes: 2 additions & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ else
PUSH="true"
fi

HLS="true"
HLS="false"

for STREAM_NAME in $(echo ${RTMP_STREAMS})
do
Expand All @@ -90,6 +90,7 @@ echo Creating stream $STREAM_NAME
cat >>${NGINX_CONFIG_FILE} <<!EOF
application ${STREAM_NAME} {
live on;
publish_notify on;
record off;
on_publish http://localhost:8080/on_publish;
!EOF
Expand Down