知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

nginx的小总结(一)

发布时间:2014-09-05 15:09:38作者:知识屋

nginx的小总结(一)
 
nginx是一个免费、开源、高性能的HTTP server、反向代理服务器以及邮件代理服务器。因其高性能、可靠性好、丰富的特征插件、极低的资源消耗而闻名!
  www.zhishiwu.com  
NGINX的编译安装(RHEL6.0)
 
[root@server2 nginx-1.2.3]# vim auto/cc/gcc 
# debug 
#CFLAGS="$CFLAGS -g"                        //为了编译简单,我们将调试的部分去掉 
 
[root@server2 nginx-1.2.3]# vim src/core/nginx.h
 
#define NGINX_VER 
"nginx/" NGINX_VERSION                                       //去掉课隐藏版本号 
useradd -M -d /usr/local/lnmp/nginx -s /sbin/nologin nginx                    //添加一个nginx的用户 
[root@server2 nginx-1.2.3]# ./configure --prefix=/usr/local/nginx --with- 
http_stub_status_module --with-http_ssl_module
 
制定安装的路径以及加载的模块,会发现没有PCRE库   www.zhishiwu.com  
 
PATH=$PATH:$HOME/bin:/usr/local/lnmp/nginx/sbin
 
[root@server2 ~]# source ~/.bash_profile 
同样加入环境变量 
yum install pcre-devel 
 
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜