nginxをインストールする

最近何かと使う、nginxをインストールするメモです。
環境:OS X 10.9

$ curl -O http://nginx.org/download/nginx-1.4.3.tar.gz
$ curl -L -O "http://downloads.sourceforge.net/project/pcre/pcre/8.33/pcre-8.33.tar.bz2?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fpcre%2Ffiles%2Fpcre%2F8.33%2F&ts=1383407826&use_mirror=jaist"
$ tar xvf nginx-1.4.3.tar.gz
$ tar xvf pcre-8.33.tar.bz2
$ cd nginx-1.4.3
$ ./configure --without-mail_pop3_module --without-mail_imap_module --without-mail_smtp_module --prefix=$HOME/Binary/nginx --with-pcre=../pcre-8.33
$ make
$ make install

--with-pcreってコンパイルしたバイナリの場所を渡すんでなくて、pcreのソースの場所を渡すのですね……
とりあえず、これでCocProxy for nginx - #生存戦略 、それは - subtech / cocproxy for nginx · GitHubが使えます。