iOS開發 - Mac下搭建基於rtmp協議的ngnix本地伺服器

__折戟沉沙發表於2018-10-30

1、安裝homebrew  ruby -e "$(curl -fsSL

https://raw.githubusercontent.com/Homebrew/install/master/install)"

2、clone到本地

brew tap denji/nginx

3、安裝ngnix-full

//brew install nginx-full --with-upload-module

brew install nginx-full --with-rtmp-module

4、到ngnix.conf路徑下配置rtmp協議

rtmp {

    server {

        listen 1935;

        application rtmplive {

            live on;

            record off;

        }

    }

}

5、輸入ngnix,開啟服務

6、瀏覽器位址列輸入localhost:8080測試nginx是否啟動成功。

相關文章