[root@centos ~]# systemctl stop nginx ← nginx停止 |
[root@centos ~]# wget https://nginx.org/download/nginx-1.17.3.tar.gz ← nginxダウンロード |
※最新版のダウンロードページURL |
[root@centos ~]# tar zxf nginx-*.tar.gz ← nginx展開 |
[root@centos ~]# cd nginx-* ← nginx展開先ディレクトリへ移動 |
[root@centos nginx-1.17.3]# git clone https://github.com/arut/nginx-rtmp-module.git ← nginx-rtmp-moduleダウンロード |
[root@centos nginx-1.17.3]# ./configure --add-module=nginx-rtmp-module/ --with-http_ssl_module --with-debug && make && make install ← nginx+nginx-rtmp-moduleインストール |
[root@centos nginx-1.17.3]# cd ← nginx展開先ディレクトリを抜ける |
[root@centos ~]# rm -rf nginx-* ← nginx展開先ディレクトリとダウンロードしたファイルを削除 |
[root@centos ~]# systemctl start nginx ← nginx起動 |