56

ダウンロードしてnginxを構成しようとした後、コマンド./configure umを実行するとこのエラーが発生します

./configure: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using --without-http_rewrite_module
option, or install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using --with-pcre=<path> option.

そして私は実行します

apt-get build-dep nginx 

コマンド um で次のエラーが発生する

The following packages have unmet dependencies:
libgd2-noxpm-dev : Depends: libgd2-noxpm (= 2.0.36~rc1~dfsg-6ubuntu2) but it is not    going to be installed
E: Build-dependencies for nginx could not be satisfied.

libgd2-noxpm についてはまったくわかりません。nginx を使用するのはこれが初めてです。このエラーを克服する方法。前もって感謝します

4

3 に答える 3

119

pcre3 をインストールする必要があります。

apt-get install libpcre3 libpcre3-dev

このライブラリは、location ディレクティブでの正規表現のサポートと ngx_http_rewrite_module モジュールに必要です。http://nginx.org/en/docs/install.html

于 2012-12-26T21:02:26.247 に答える