mac下nginx开启80端口
mac系统不允许用户进程使用1024以下端口,配置文件写了80端口也不会生效。
把这个/usr/local/opt/nginx/homebrew.mxcl.nginx.plist文件复制到 /Library/LaunchDaemons 下, 接着执行launchctl load -w,如下:
sudo cp /usr/local/opt/nginx/*.plist /Library/LaunchDaemons
sudo launchctl load -w /Library/LaunchDaemons/homebrew.mxcl.nginx.plist
重启系统后nginx可以使用80端口了。
分类: 技术