pingos
pingos copied to clipboard
rtmp directive should always before http, or it will port not found error
For example in nginx.conf file
rtmp {
}
http {
}
This works fine.
But using config file
http {
}
rtmp {
}
It will throw port not found error.