2
0

hls.origin.conf 405 B

123456789101112131415161718
  1. listen 1935;
  2. max_connections 1000;
  3. daemon off;
  4. srs_log_tank console;
  5. http_server {
  6. enabled on;
  7. listen 8080;
  8. }
  9. vhost __defaultVhost__ {
  10. hls {
  11. enabled on;
  12. # Note that it will make NGINX edge cache always missed, so never enable HLS streaming if use NGINX edges.
  13. hls_ctx off;
  14. hls_ts_ctx off;
  15. }
  16. }