http://blog.csdn.net/happyheng/article/details/63683513
在mac上進(jìn)行安裝:
? 1慷彤、使用homebrew進(jìn)行安裝:
? ? brew install nginx
? 其會安裝在 /usr/local/Cellar/目錄下覆劈。
? 2笑窜、給予管理員權(quán)限
? ? sudo chown root:wheel/usr/local/opt/nginx/bin/nginx
? ? sudo chmod u+s/usr/local/opt/nginx/bin/nginx
? 3学辱、修改其監(jiān)聽端口為80:
? ? sudo vim /usr/local/etc/nginx/nginx.conf
? 然后在里面的
? ? server {
? ? ? ? listen ? ? ? 8080;
? ? ? ? server_name ?localhost;
? ? ? ? xxx
? ? }
? 將listen對應(yīng)的8080改為80即可,保存退出
? 4稀并、啟動nginx:
? 直接在終端中執(zhí)行:
? ? sudo nginx
? 因?yàn)橹耙呀?jīng)修改了端口號鞭缭,所以直接輸入localhost,既可以看到歡迎信息:
? 5.重新加載nginx.conf文件:
? ? sudo nginx -s reload
? 6.退出nginx:
? ? sudo nginx -s quit