skip to Main Content

I have the current version of ngnix of:

nginx -v
nginx version: nginx/1.15.6

2

Answers


  1. You can use Homebrew to manage package on MacOS.

    For nginx, you can use brew install nginx

    Login or Signup to reply.
  2. To upgrade nginx on macOS, use Homebrew:

    1. Update Homebrew

      brew update
      
    2. Upgrade nginx

      brew upgrade nginx
      
    3. Cleanup old artifacts

      brew cleanup
      

    Reference

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search