facebook twitter hatena line email

Mac/インストール/nginx

提供: 初心者エンジニアの簡易メモ
2016年9月8日 (木) 07:27時点におけるAdmin (トーク | 投稿記録)による版

移動: 案内検索

インストール

sudo brew install nginx

起動・停止

sudo nginx
sudo nginx -s stop

httpアクセス

ttp://localhost:8080/

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

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

参考

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