话不多说,我的系统的centos6,参考帖子http://bbs.swdyz.com/forum.php?mod=viewthread&tid=418- N, m0 U6 q: `0 z, m e
下载需要组件# i1 Z: M9 g F
wget http://nginx.org/download/nginx-1.15.9.tar.gz
+ P& p& Q$ z* E" q t& rtar xvzf nginx-1.15.9.tar.gz
0 L9 y0 D2 Z0 \8 x- u6 M9 T- A6 h# ~0 U$ d7 v; |& n- P+ G$ K
wget https://www.openssl.org/source/openssl-1.1.1b.tar.gz H; {4 l7 v: Q$ }3 g+ m
tar xvzf openssl-1.1.1b.tar.gz, h% v% h6 {& w& X0 t; p' v
* J* f0 q2 F& C4 q" |# dwget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.43.tar.gz* ?, j8 m1 G1 z9 i7 p- x7 u
tar xvzf pcre-8.43.tar.gz
( L" `0 R& z, k W+ l( p* ]( P7 o
8 v- f2 N! ]0 x# dwget https://github.com/yaoweibin/ngx_http_substitutions_filter_module/archive/master.zip -O ngx_http_substitutions_filter.zip5 h8 S: i; [3 y( _0 }& M
unzip ngx_http_substitutions_filter.zip
6 ?9 z" ~4 P2 j4 s ]0 M+ k0 v E
: F; `3 v9 s. fcd nginx-1.15.9
/ M k& K# B+ S2 e$ G
8 J, r7 Y) V7 { P" A配置文件' h3 k' G. M" `
8 ^ E, |8 ?% g- ^# b) e$ b- g- L6 \$ Z; J. @: `* S0 ]
[Shell] 纯文本查看 复制代码 ./configure \
--user=www \
--group=www \
--prefix=/www/webserver/nginx-1.15.9 \
--sbin-path=/www/webserver/nginx-1.15.9/sbin/nginx \
--pid-path=/www/webserver/nginx-1.15.9/logs/nginx.pid \
--conf-path=/www/webserver/nginx-1.15.9/conf/nginx.conf \
--error-log-path=/www/webserver/nginx-1.15.9/logs/error.log \
--http-log-path=/www/webserver/nginx-1.15.9/logs/access.log \
--http-client-body-temp-path=/www/webserver/nginx-1.15.9/temp/client \
--http-proxy-temp-path=/www/webserver/nginx-1.15.9/temp/proxy \
--http-fastcgi-temp-path=/www/webserver/nginx-1.15.9/temp/fcgi \
--http-scgi-temp-path=/www/webserver/nginx-1.15.9/temp/scgi \
--http-uwsgi-temp-path=/www/webserver/nginx-1.15.9/temp/uwsgi \
--with-http_flv_module \
--with-http_stub_status_module \
--with-http_realip_module \
--with-http_ssl_module \
--with-http_v2_module \
--with-http_gzip_static_module \
--with-pcre=/root/pcre-8.43 \
--with-http_sub_module \
--add-module=/root/ngx_http_substitutions_filter_module-master \
--with-openssl=/root/openssl-1.1.1b 4 H% J* w3 B5 |
编译 make
9 K& R$ H9 P1 L, A" O) U+ D安装 make install
& a8 `* f( J1 @( }6 A- K' W1 `3 L8 T% H
其它的启动配置文件找度娘。
; _& A1 }* N5 F |