얼마 전 프록시 서버에 접속해 시행착오를 거쳐 nginx 환경을 설정해봤습니다. 다음으로 Mac에 nginx 환경을 설치하는 기본 단계를 소개해드리겠습니다.
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"을 입력하여 homebrew를 설치합니다. 공식 홈페이지: http://brew.sh/.
It appears Homebrew is already installed. If your intent is to reinstall you should do the following before running this installer again: rm -rf /usr/local/Cellar /usr/local/.git && brew cleanup프롬프트에 따라 삭제 명령줄을 입력합니다.
rm -rf /usr/local/Cellar /usr/local/.git && brew cleanup삭제 후 설치 명령줄을 입력하세요.
brew install nginx
nginx -t 正确提示:nginx: the configuration file /usr/local/etc/nginx/nginx.conf syntax is ok nginx: configuration file /usr/local/etc/nginx/nginx.conf test is successful
chmod 777 file file为需要开放权限的文件路径
vim /usr/local/etc/nginx/nginx.conf
server { listen 9999(自定义端口号); server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root /Users/loki/Desktop/web/(需要部署应用的文件路径); index index.html index.htm; }
sudo nginx
nginx -s reload #重新加载配置 nginx -s reopen #重启 nginx -s stop #停止 nginx -s quit #退出위 내용을 포함하여 서버 Mac 설치 nginx 환경을 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되길 바랍니다.
选项: -?,-h : 打开帮助信息 -v : 显示版本信息并退出 -V : 显示版本和配置选项信息,然后退出 -t : 检测配置文件是否有语法错误,然后退出 -q : 在检测配置文件期间屏蔽非错误信息 -s signal : 给一个 nginx 主进程发送信号:stop(停止), quit(退出), reopen(重启), reload(重新加载配置文件) -p prefix : 设置前缀路径(默认是:/usr/local/Cellar/nginx/1.2.6/) -c filename : 设置配置文件(默认是:/usr/local/etc/nginx/nginx.conf) -g directives : 设置配置文件外的全局指令