https.flv.live.conf 618 B

12345678910111213141516171819202122232425
  1. # the config for srs to remux rtmp to flv live stream.
  2. # @see https://github.com/ossrs/srs/issues/1657#issuecomment-722971676
  3. # @see full.conf for detail config.
  4. listen 1935;
  5. max_connections 1000;
  6. daemon off;
  7. srs_log_tank console;
  8. http_server {
  9. enabled on;
  10. listen 8080;
  11. dir ./objs/nginx/html;
  12. https {
  13. enabled on;
  14. listen 8088;
  15. key ./conf/server.key;
  16. cert ./conf/server.crt;
  17. }
  18. }
  19. vhost __defaultVhost__ {
  20. http_remux {
  21. enabled on;
  22. mount [vhost]/[app]/[stream].flv;
  23. }
  24. }