Mac/インストール/nginx
提供: 初心者エンジニアの簡易メモ
インストール
sudo brew install nginx
起動・停止
sudo nginx sudo nginx -s stop
httpアクセス
ttp://localhost:8080/
設定ファイルのドキュメントルート変更
vi /usr/local/etc/nginx/nginx.conf location / { root html;
sudo brew install nginx
sudo nginx sudo nginx -s stop
ttp://localhost:8080/
vi /usr/local/etc/nginx/nginx.conf location / { root html;
|