2
0

http.api.raw.conf 589 B

12345678910111213141516171819202122232425262728
  1. # main config for srs.
  2. # @see full.conf for detail config.
  3. listen 1935;
  4. max_connections 1000;
  5. srs_log_tank file;
  6. srs_log_file ./objs/srs.log;
  7. http_api {
  8. enabled on;
  9. listen 1985;
  10. raw_api {
  11. enabled on;
  12. allow_reload on;
  13. allow_query on;
  14. allow_update on;
  15. }
  16. }
  17. http_server {
  18. enabled on;
  19. listen 8080;
  20. dir ./objs/nginx/html;
  21. }
  22. stats {
  23. network 0;
  24. disk sda sdb xvda xvdb;
  25. }
  26. vhost __defaultVhost__ {
  27. }