Skip to content

Instantly share code, notes, and snippets.

@mihow
Created May 3, 2020 01:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mihow/bc1c3d6724b859337ce93ad0419b8952 to your computer and use it in GitHub Desktop.
Save mihow/bc1c3d6724b859337ce93ad0419b8952 to your computer and use it in GitHub Desktop.
Multi RTMP proxy
worker_processes auto;
rtmp_auto_push on;
events {}
rtmp {
server {
listen 1935;
listen [::]:1935 ipv6only=on;
application live {
live on;
record off;
push rtmp://live-pdx.twitch.tv/app/KEY_HERE;
push rtmp://a.rtmp.youtube.com/live2/KEY_HERE;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment