1、下載
html
http://tengine.taobao.org/nginx
http://tengine.taobao.org/download/tengine-2.0.2.tar.gz 測試
2、解壓ui
tar -zxvf tengine-2.0.2.tar.gzspa
./configurecode
出現錯誤:htm
./configure: error: the HTTP rewrite module requires the PCRE library.md5
You can either disable the module by using --without-http_rewrite_modulessl
option, or install the PCRE library into the system, or build the PCRE libraryget
statically from the source with nginx by using --with-pcre=<path> option.
解決辦法:經測試yum -y install pcre 已經安裝
只好:yum -y install pcre-devel 成功!
./configure: error: SSL modules require the OpenSSL library.
You can either do not enable the modules, or install the OpenSSL library
into the system, or build the OpenSSL library statically from the source
with nginx by using --with-openssl=<path> option.
解決辦法:yum install openssl-devel
Configuration summary
+ using system PCRE library
+ using system OpenSSL library
+ md5: using OpenSSL library
+ sha1: using OpenSSL library
+ using system zlib library
+ jemalloc library is disabled
nginx path prefix: "/usr/local/nginx"
nginx binary file: "/usr/local/nginx/sbin/nginx"
nginx configuration prefix: "/usr/local/nginx/conf"
nginx configuration file: "/usr/local/nginx/conf/nginx.conf"
nginx pid file: "/usr/local/nginx/logs/nginx.pid"
nginx error log file: "/usr/local/nginx/logs/error.log"
nginx http access log file: "/usr/local/nginx/logs/access.log"
nginx http client request body temporary files: "client_body_temp"
nginx dso module path: "/usr/local/nginx/modules/"
nginx http proxy temporary files: "proxy_temp"
nginx http fastcgi temporary files: "fastcgi_temp"
nginx http uwsgi temporary files: "uwsgi_temp"
nginx http scgi temporary files: "scgi_temp"
make
make install
# make # make install # /usr/local/nginx/sbin/nginx #啓動 # chown nobody.nobody -R /usr/local/nginx/html # chmod 700 -R /usr/local/nginx/html