admin 发表于 2015-4-29 14:48:12

手迹,nginx+naxsi(waf)+关键字替换

软件:
wget http://nginx.org/download/nginx-1.9.0.tar.gz
tar xzvf nginx-1.9.0.tar.gz
wget https://github.com/nbs-system/naxsi/archive/master.zip
mv master.zip naxsi-master.zip
unzip naxsi-master.zip

https://github.com/yaoweibin/ngx_http_substitutions_filter_module/archive/master.zip
mv master.zip ngx-master.zip
unzip ngx-master.zip

cd nginx-1.9.0


./configure \
--user=www \
--group=www \
--prefix=/www/webserver/nginx-1.9.0 \
--sbin-path=/www/webserver/nginx-1.9.0/sbin/nginx \
--pid-path=/www/webserver/nginx-1.9.0/logs/nginx.pid \
--conf-path=/www/webserver/nginx-1.9.0/conf/nginx.conf \
--error-log-path=/www/webserver/nginx-1.9.0/logs/error.log \
--http-log-path=/www/webserver/nginx-1.9.0/logs/access.log \
--http-client-body-temp-path=/www/webserver/nginx-1.9.0/temp/client \
--http-proxy-temp-path=/www/webserver/nginx-1.9.0/temp/proxy \
--http-fastcgi-temp-path=/www/webserver/nginx-1.9.0/temp/fcgi \
--http-scgi-temp-path=/www/webserver/nginx-1.9.0/temp/scgi \
--http-uwsgi-temp-path=/www/webserver/nginx-1.9.0/temp/uwsgi \
--with-http_flv_module \
--with-http_stub_status_module \
--with-http_realip_module \
--with-http_ssl_module \
--with-http_spdy_module \
--with-http_gzip_static_module \
--with-ipv6 \
--with-pcre=/root/pcre-8.34 \
--with-http_sub_module \
--add-module=/root/ngx_http_substitutions_filter_module-master \
--add-module=/root/naxsi-master/naxsi_src


页: [1]
查看完整版本: 手迹,nginx+naxsi(waf)+关键字替换