Skip to content

Commit

Permalink
Update nginx.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
ustoopia committed Oct 21, 2020
1 parent 9eb27f0 commit 7f3c32a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions conf/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,12 @@ http {
autoindex on;
autoindex_localtime on;
autoindex_exact_size off;
alias temp/tmp_hls;
alias temp/tmp_hls; # <-----
expires -1;
}

location /tmp_dash {
alias temp/tmp_dash;
alias temp/tmp_dash; # <-----
autoindex on;
autoindex_localtime on;
autoindex_exact_size off;
Expand Down Expand Up @@ -250,7 +250,7 @@ rtmp {
hls_type live;
hls_fragment 5s;
hls_playlist_length 30s;
hls_path temp/tmp_hls;
hls_path temp/tmp_hls; # <-----
hls_fragment_naming system;

hls_variant _low BANDWIDTH=288000; # Low bitrate, sub-SD resolution
Expand All @@ -267,7 +267,7 @@ rtmp {
dash_cleanup on;
dash_fragment 5s;
dash_playlist_length 30s;
dash_path temp/tmp_dash;
dash_path temp/tmp_dash; # <-----
}

#application youtube {
Expand Down

0 comments on commit 7f3c32a

Please sign in to comment.