HttpStripModule モジュールを追加するために、nginx を再コンパイルしました。(私はこれに従いました: https://serverfault.com/a/279536/111652 )
これは、make / make install に使用した構成オプションです。
--conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --pid-path=/var/run/nginx.pid --lock-path=/var/lock/nginx.lock --http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/var/lib/nginx/body --http-proxy-temp-path=/var/lib/nginx/proxy --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --with-debug --with-http_stub_status_module --with-http_flv_module --with-http_ssl_module --with-http_dav_module --with-http_gzip_static_module --with-http_realip_module --with-mail --with-mail_ssl_module --with-ipv6 --add-module=/usr/src/gnosek-nginx-upstream-fair-5f6a3b7 --add-module=/usr/src/mod_strip
そして、make install が完了するとすぐに、nginx を再起動して実行nginx -V
すると、次のような出力が得られました。
--conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --pid-path=/var/run/nginx.pid --lock-path=/var/lock/nginx.lock --http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/var/lib/nginx/body --http-proxy-temp-path=/var/lib/nginx/proxy --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --with-debug --with-http_stub_status_module --with-http_flv_module --with-http_ssl_module --with-http_dav_module --with-http_gzip_static_module --with-http_realip_module --with-mail --with-mail_ssl_module --with-ipv6 --add-module=/build/buildd/nginx-0.7.65/modules/nginx-upstream-fair
ご覧のとおり...私のストリップモジュールは必要ありませんでした。:(
何が起きてる?
更新: このすべての後、nginx の元のインストールが実際には置き換えられていないことに気付きました。
この問題は、 --sbin-path フラグを nginx の現在の場所に指定してからインストールすることで解決されました。その後、ファイルは実際に上書きされました。nginx サーバーを起動すると、新しいバージョンであることが示されます。