仿照debian的nginx-light 打包了一个nginx 的SRPM 包,分享给大家。
为了精简,去掉了很多默认模块,仅保留了核心的web,proxy,fastcgi,limit_conn等模块。
编译参数如下,仅供参考
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
.
/configure
\
--prefix=%{_sysconfdir}
/nginx
\
--sbin-path=%{_sbindir}
/nginx
\
--conf-path=%{_sysconfdir}
/nginx/nginx
.conf \
--error-log-path=%{_localstatedir}
/log/nginx/error
.log \
--http-log-path=%{_localstatedir}
/log/nginx/access
.log \
--pid-path=%{_localstatedir}
/run/nginx
.pid \
--lock-path=%{_localstatedir}
/run/nginx
.lock \
--http-client-body-temp-path=%{_localstatedir}
/cache/nginx/client_temp
\
--http-proxy-temp-path=%{_localstatedir}
/cache/nginx/proxy_temp
\
--http-fastcgi-temp-path=%{_localstatedir}
/cache/nginx/fastcgi_temp
\
--user=%{nginx_user} \
--group=%{nginx_group} \
--without-http_browser_module \
--without-http_geo_module \
--without-http_memcached_module \
--without-http_scgi_module \
--without-http_uwsgi_module \
--with-http_realip_module \
--with-http_gzip_static_module \
--with-http_stub_status_module \
--with-cc-opt=
"%{optflags} $(pcre-config --cflags)"
\
|
下载附件后,请直接将名字改为 nginx-1.4.4-2.el6.lite.src.rpm
(when download finished,plz directly rename the file to “nginx-1.4.4-2.el6.lite.src.rpm”)
本文转自 紫色葡萄 51CTO博客,原文链接:http://blog.51cto.com/purplegrape/1339012,如需转载请自行联系原作者