Created
May 3, 2020 01:45
-
-
Save mihow/bc1c3d6724b859337ce93ad0419b8952 to your computer and use it in GitHub Desktop.
Multi RTMP proxy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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