1. ソースをダウンロード & 解凍
http://nginx.org/en/download.html からソースをダウンロードして、tarとかで解凍
2. configure
- インストール先は
/usr/local/nginx
とする - httpsが使えること
- リバースプロキシとして使うときに、クライアントのIPアドレスを引き渡したい
- python使わないのでuwsgiは不要
- SSIも不要
$ ./configure --prefix=/usr/local/nginx --with-http_ssl_module --without-http_ssi_module --without-http_uwsgi_module --with-http_realip_module
3. make
$ make
4. make install
$ sudo make install