时间:2021-07-01 10:21:17 帮助过:17人阅读
2016-01-26 nginx-1.8.1 stable and nginx-1.9.10 mainline versions
发音
nginx发音是engine x。
版本
nginx的下载页面(http://nginx.org/en/download.html)上会同时给出最新的Mainline version、Stable version和Legacy versions,分别对应开发版、稳定版和历史版本。在生产环境建议使用稳定版本。
安装
nginx依赖gcc、openssl-devel、pcre和zlib-devel,其中pcre不在系统光盘中,需要单独安装。 
pcre是为了使nginx支持HTTP Rewrite模块。全称是Perl Compatible Regular Expressions。
PCRE库有两个主要版本,最新版本PCRE2,2015年发布了10.21版本;被广泛部署的PCRE原始版本,最初于1997年发布,现在的版本是8.38,API和特性都已经稳定,将来的版本发布只会修复bug。
官方文档给出的从源码安装的步骤如下:
./configure
make
sudo make install默认情况下,nginx 会被安装到/usr/local/nginx目录。 
安装程序打印的提示信息如下:
[gap@localhost nginx-1.8.0]$ sudo ./configure 
Configuration summary
  + using system PCRE library
  + OpenSSL libraryisnot used
  + md5: using system crypto library
  + sha1: using system crypto library
  + using system zlib library一些重要的目录
  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 logfile: "/usr/local/nginx/logs/error.log" //访问日志
  nginx http access logfile: "/usr/local/nginx/logs/access.log"
  nginx http client request body temporary files: "client_body_temp"
  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"安装完成后,查看nginx版本信息。
[gap@localhost nginx]$ sbin/nginx -v
nginx version: nginx/1.8.0以上就介绍了Nginx学习笔记——安装起步,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。