Advertisement
Guest User

nginx.conf

a guest
Feb 12th, 2014
6,018
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nagios 0.59 KB | None | 0 0
  1. #user  nobody;
  2. worker_processes  1;
  3.  
  4. error_log  logs/error.log;
  5. error_log  logs/error.log  notice;
  6. error_log  logs/error.log  info;
  7.  
  8. #pid        logs/nginx.pid;
  9.  
  10.  
  11. events {
  12.     worker_connections  1024;
  13. }
  14.  
  15.  
  16. rtmp {
  17.         server {
  18.                 listen 1935;
  19.                 chunk_size 4096;
  20.  
  21.                 application live {
  22.                         live on;
  23.                         record off;
  24.                         push rtmp://live-ams.twitch.tv/app/YOURHKEYHERE;
  25.                         push rtmp://live.vgn.hitbox.tv/push/YOURKEYHERE;
  26.                 }
  27.         }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement