该文档所用的nginx版本
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,分别对应开发版、稳定版和历史版本。在生产环境建议使用稳定版本。
PHP网络编程技术详解由浅入深,全面、系统地介绍了PHP开发技术,并提供了大量实例,供读者实战演练。另外,笔者专门为本书录制了相应的配套教学视频,以帮助读者更好地学习本书内容。这些视频和书中的实例源代码一起收录于配书光盘中。本书共分4篇。第1篇是PHP准备篇,介绍了PHP的优势、开发环境及安装;第2篇是PHP基础篇,介绍了PHP中的常量与变量、运算符与表达式、流程控制以及函数;第3篇是进阶篇,介绍
安装
安装依赖库
nginx依赖gcc、openssl-devel、pcre和zlib-devel,其中pcre不在系统光盘中,需要单独安装。
pcre是为了使nginx支持HTTP Rewrite模块。全称是Perl Compatible Regular Expressions。
- pcre的版本说明
PCRE库有两个主要版本,最新版本PCRE2,2015年发布了10.21版本;被广泛部署的PCRE原始版本,最初于1997年发布,现在的版本是8.38,API和特性都已经稳定,将来的版本发布只会修复bug。
安装nginx
官方文档给出的从源码安装的步骤如下:
./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
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });
以上就介绍了Nginx学习笔记——安装起步,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。









