在 MacOS 上升级 NGINX 版本
Upgrade NGNIX version on MacOS
我有当前版本的 ngnix:
nginx -v
nginx version: nginx/1.15.6
现在想升级,不知道怎么升级?
我找到了这些资源:https://medium.com/@soban1193/upgrading-nginx-to-the-latest-version-on-ubuntu-c0ad9116cf87 and https://www.digitalocean.com/community/questions/how-to-update-nginx-and-should-i-update-it 但它们似乎可以使用 ubuntu 命令进行升级。
我想知道如何使用 macos 进行升级
您可以使用 Homebrew 在 MacOS 上管理包。
对于nginx,可以使用brew install nginx
要在 macOS 上升级 nginx,请使用 Homebrew:
更新 Homebrew
brew update
升级nginx
brew upgrade nginx
清理旧工件
brew cleanup
我有当前版本的 ngnix:
nginx -v
nginx version: nginx/1.15.6
现在想升级,不知道怎么升级?
我找到了这些资源:https://medium.com/@soban1193/upgrading-nginx-to-the-latest-version-on-ubuntu-c0ad9116cf87 and https://www.digitalocean.com/community/questions/how-to-update-nginx-and-should-i-update-it 但它们似乎可以使用 ubuntu 命令进行升级。
我想知道如何使用 macos 进行升级
您可以使用 Homebrew 在 MacOS 上管理包。
对于nginx,可以使用brew install nginx
要在 macOS 上升级 nginx,请使用 Homebrew:
更新 Homebrew
brew update
升级nginx
brew upgrade nginx
清理旧工件
brew cleanup