安装必备
由于2.6及以上内核才支持epoll,所以应该是2.6的机器上安装:查看内核版本uname -a
依赖软件:
- yum install -y gcc-c++
- yum install -y pcre pcre-devel
- yum install -y zlib zlib-devel
- yum install -y openssl openssl-devel
Nginx 源码安装
安装命令:
./configure –with-http_stub_status_module –with-http_ssl_module –with-pcre && make && make install
配置参数:
--prefix=PATH
Nginx安装部署后的根目录,默认值/usr/local/nginx--sbin-path=PATH
可执行文件目录,默认值$prefix/sbin/nginx--conf-path=PATH
配置文件目录,默认值prefix$/conf/nginx.conf--with-http_stub_status_module
安装http stub status module--with-http_ssl_module
安装http ssl module,提供https服务--with-pcre
强制使用PCRE库
更多配置信息参考:豆瓣阅读-深入理解Nginx
Continue..