Mac/インストール/nginx
提供: 初心者エンジニアの簡易メモ
インストール
brew install nginx
起動・停止・再起動
sudo nginx #起動 sudo nginx -s stop # 停止 sudo nginx -s reload # 再起動
httpアクセス
ttp://localhost:80/
設定ファイルのドキュメントルート変更
vi /usr/local/etc/nginx/nginx.conf location / { root html;
参考
http://phiary.me/mac-nginx-install/
自動起動
cp /usr/local/opt/nginx/*.plist ~/Library/LaunchAgents/ sudo chmod 600 ~/Library/LaunchAgents/homebrew.mxcl.nginx.plist sudo chown root ~/Library/LaunchAgents/homebrew.mxcl.nginx.plist sudo launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.nginx.plist sudo launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.nginx.plist
自動起動確認
brew services list
設定ファイルの追加
vi servers/default.conf
以下参照 linux/nginx [ショートカット]