-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup-basic
More file actions
52 lines (35 loc) · 1.25 KB
/
Copy pathsetup-basic
File metadata and controls
52 lines (35 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#installs NGINX + RTMP module Basic => https://obsproject.com/forum/resources/how-to-set-up-your-own-private-rtmp-server-using-nginx.50/
apt-get update
echo "adding ffmpeg"
add-apt-repository -y ppa:mc3man/trusty-media
apt-get update
echo "installing build-essential libpcre3 libpcre3-dev libssl-dev unzip"
apt-get install -y build-essential libpcre3 libpcre3-dev libssl-dev unzip ffmpeg
echo "downloading latest nginx version and rtmp module"
wget https://nginx.org/download/nginx-1.11.5.tar.gz
wget https://github.com/arut/nginx-rtmp-module/archive/master.zip
echo "decompressing"
tar -zxvf nginx-1.11.5.tar.gz
unzip master.zip
echo "moving to nginx directory"
cd nginx-1.11.5
echo "configure with ssl and rtmp"
./configure --with-http_ssl_module --add-module=../nginx-rtmp-module-master
echo "make"
make
echo "make install"
make install
echo "create src, hls and dash directory"
mkdir /usr/local/nginx/html/src
mkdir /usr/local/nginx/html/hls
mkdir /usr/local/nginx/html/dash
mkdir /tmp/hls
mkdir /tmp/dash
echo "starting nginx"
/usr/local/nginx/sbin/nginx
echo "append rtmp to config"
cat ../rtmp.conf >> /usr/local/nginx/conf/nginx.conf
echo "restarting webserver"
/usr/local/nginx/sbin/nginx -s stop
/usr/local/nginx/sbin/nginx
echo "nginx with rtmp available"