乐趣区

Mac安装Nginx

安装

brew install nginx

启动

nginx

访问 localhost:8080 出现 nginx 画面即可.

其他命令

nginx -s reload|stop|quit

默认部署地址

/usr/local/var/www

nginx 安装目录

/usr/local/etc/nginx/

问题

  1. nginx already installed, it’s just not linked

    brew link nginx
  2. Could not symlink share/man/man8/nginx.8

    sudo chmod ug+w share/man/man8/nginx.8
  3. 403 问题: 可能是权限问题, 改文件夹为 755

    chmod -R 755 YOUR_FOLDER

    注意 ngincfyix.conf 中 user 的设置, 改成对应的用户, 一般为 root

退出移动版