2

Trying to set up an RTMP server on Ubuntu 14.04.4, but I am running into the above error when trying to complete the guide found here.

I have done everything correctly I think, when trying to run this portion of the guide I get the error:

$ ./configure --with-http_ssl_module --add-module=./nginx-rtmp-module-master
$ make <-- Command that gives the error`

Error:

make error ** No rule to make target 'build', needed by 'default'. Stop

I'm still new with Linux, so i'm not really sure what I am doing wrong, any guidance would be appreciated. Thank you.

1 Answers1

0

Update your nginx.

Using the following command, gives the error.

$ wget http://nginx.org/download/nginx-1.9.15.tar.gz

Instead use,

$ wget https://nginx.org/download/nginx-1.10.1.tar.gz
Genko
  • 1