Macにnginxを再インストール

luaモジュールが欲しかったので入れなおした.
nginx-fullを使う.
http://kannokanno.hatenablog.com/entry/2014/02/10/134920

brew tap marcqualie/nginx
brew install nginx-full --with-lua-module

http://kakakakakku.hatenablog.com/entry/2013/12/12/183806

# 起動
$ sudo nginx
# 停止
$ sudo nginx -s stop
# 再起動
$ sudo nginx -s reload

luaモジュールのテスト
http://qiita.com/futoase/items/4185432667569b6b3f35

 location /lua-test {
            default_type 'text/plain';
            content_by_lua "ngx.say('Hello,world!')";
        }