facebook twitter hatena line email

「Mac/インストール/nginx」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(httpアクセス)
行7: 行7:
  
 
==httpアクセス==
 
==httpアクセス==
  ttp://localhost:8080/
+
  ttp://localhost:80/
  
 
==設定ファイルのドキュメントルート変更==
 
==設定ファイルのドキュメントルート変更==

2016年12月16日 (金) 17:16時点における版

インストール

brew install nginx

起動・停止

sudo nginx
sudo nginx -s stop

httpアクセス

ttp://localhost:80/

設定ファイルのドキュメントルート変更

vi /usr/local/etc/nginx/nginx.conf
       location / {
           root   html;

参考

http://phiary.me/mac-nginx-install/

自動起動

ln -sfv /usr/local/opt/nginx/*.plist ~/Library/LaunchAgents
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.nginx.plist

設定ファイルの追加

vi servers/default.conf

以下参照 linux/nginx [ショートカット]