标签:nginx 高并发
目录:
1、高效的nginx
2、源码编译安装nginx
1、高效的nginx
2、源码编译安装nginx
系统环境:
[root@zhaochj software]# pwd /root/software [root@zhaochj software]# cat /etc/issue CentOS release 6.4 (Final) Kernel \r on an \m [root@zhaochj software]# uname -r 2.6.32-358.el6.x86_64
编译、配置、安装:
[root@zhaochj nginx]# pwd /root/software/nginx [root@zhaochj nginx]# ls nginx-1.6.2.tar.gz [root@zhaochj nginx]# tar xf nginx-1.6.2.tar.gz [root@zhaochj nginx]# cd nginx-1.6.2 [root@zhaochj nginx-1.6.2]# ./configure --prefix=/opt/lemp/nginx --sbin-path=/opt/lemp/nginx/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/lock/subsys/nginx.lock --user=nginx --group=nginx --with-file-aio --with-http_ssl_module --with-http_flv_module --with-http_mp4_module --with-http_gzip_static_module --with-http_stub_status_module --http-client-body-temp-path=/var/tmp/nginx/client --http-proxy-temp-path=/var/tmp/nginx/proxy --http-fastcgi-temp-path=/var/tmp/nginx/fastcgi --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi --http-scgi-temp-path=/var/tmp/nginx/scgi --with-pcre [root@zhaochj nginx-1.6.2]# make && make install
本文出自 “知识需要总结与记录” 博客,请务必保留此出处http://zhaochj.blog.51cto.com/368705/1611999
标签:nginx 高并发
原文地址:http://zhaochj.blog.51cto.com/368705/1611999