macを新調したので、webの環境を整えた時のメモ。
macのバージョンは macOS Sierra バージョン 10.12.3。
nginx
brewでnginxをインストール
curlで起動確認しています。localhostに接続すると接続できませんでした。
curl: (52) Empty reply from server
$ brew install nginx
$ nginx -v
nginx version: nginx/1.12.0
$ sudo nginx
$ curl http://127.0.0.1:8080/
参考
http://qiita.com/you-me/items/5548424ebe360e5f9dda
nginxの起動ポートを8080から80番に変更
sudoして実行しないと80番ポートから起動できませんでした。
nginx: [emerg] bind() to 0.0.0.0:80 failed (13: Permission denied)
/usr/local/etc/nginx/nginx.conf
server {
listen 80;
server_name localhost;
$ sudo nginx -s reload
$ curl http://127.0.0.1/
$ ls -l /usr/local/var/www
nginxの停止
macでnginxはずっと起動し続けないので停止します
$ sudo nginx -s stop
参考
http://qiita.com/sygnas/items/34c4c408bf3418b918a7
以上