Avinay Kumar
Avinay Kumar

Reputation: 163

How can we set NGINX web server and its RTMP module on mac system?

How can we set NGINX web server and its RTMP module on mac system?

I have tried to set up server using below link

https://github.com/arut/nginx-rtmp-module/wiki/Getting-started-with-nginx-rtmp

https://github.com/arut/nginx-rtmp-module/wiki/Installing-via-Build

But could not run it as it give error as below :-

nginx-rtmp-module-master XXXXX$ ./configure --add-module=/path/to/nginx-rtmp-module --with-debug ...
-bash: ./configure: No such file or directory

Upvotes: 6

Views: 9516

Answers (3)

Flavius Oficial
Flavius Oficial

Reputation: 1

reinstall

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

Upvotes: 0

Shantanu
Shantanu

Reputation: 2346

You can try these, I used the same method to install auth_module on my mac.

  1. brew tap homebrew/nginx
  2. brew install nginx-full --with-rtmp-module --with-debug

Upvotes: 5

Alex Dobrushskiy
Alex Dobrushskiy

Reputation: 351

I've faced the same problem, however brew tap homebrew/nginx returns a error

Error: homebrew/nginx was deprecated. This tap is now empty as all its formulae were migrated.

I solved it with

brew tap denji/homebrew-nginx

Instead of

brew tap homebrew/homebrew-nginx

Upvotes: 25

Related Questions