mirror of https://github.com/ossrs/srs.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
445 B
Plaintext
19 lines
445 B
Plaintext
# the config for srs to delivery hls
|
|
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/SampleHLS
|
|
# @see full.conf for detail config.
|
|
|
|
listen 1935;
|
|
http_stream {
|
|
enabled on;
|
|
listen 8080;
|
|
dir ./objs/nginx/html;
|
|
}
|
|
vhost __defaultVhost__ {
|
|
hls {
|
|
enabled on;
|
|
hls_path ./objs/nginx/html;
|
|
hls_fragment 10;
|
|
hls_window 60;
|
|
}
|
|
}
|