nginx查看已经安装的模块,并隐藏或者修改版本号

前端之家收集整理的这篇文章主要介绍了nginx查看已经安装的模块,并隐藏或者修改版本号前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
感兴趣的小伙伴,下面一起跟随编程之家 jb51.cc的小编两巴掌来看看吧!

升级,查看已经安装的模块


[root@mail ~]# /opt/Nginx/sbin/Nginx -V
Nginx version: Nginx/0.5.34
built by gcc 3.4.6 20060404 (Red Hat 3.4.6-3)
configure arguments: --prefix=/opt/Nginx --sbin-path=/opt/Nginx/sbin/Nginx --conf-path=/opt/Nginx/conf/Nginx.conf --pid-path=/var/run/Nginx/Nginx.pid 
--error-log-path=/var/log/Nginx/error.log --http-log-path=/var/log/Nginx/access.log --http-proxy-temp-path=/opt/Nginx/temp/proxy 
--http-fastcgi-temp-path=/opt/Nginx/temp/fcgi --lock-path=/var/run/Nginx/Nginx.lock --with-http_ssl_module --with-http_sub_module 
--with-http_stub_status_module --with-debug

# End www.jb51.cc

修改版本号:


[root@mail Nginx-0.8.39]# vi src/core/Nginx.h
#define Nginx_version         8039
#define Nginx_VERSION      "0.8.39"
#define Nginx_VER          "Nginx/" Nginx_VERSION
改成:
#define Nginx_version         8039
#define Nginx_VERSION      "0.0.0"
#define Nginx_VER          "netbig/" Nginx_VERSION

# End www.jb51.cc

然后重新编译:


## 增加http_gzip和http_flv模块
./configure --prefix=/opt/Nginx \
--sbin-path=/opt/Nginx/sbin/Nginx \
--conf-path=/opt/Nginx/conf/Nginx.conf \
--pid-path=/var/run/Nginx/Nginx.pid \
--error-log-path=/var/log/Nginx/error.log \
--http-log-path=/var/log/Nginx/access.log \
--http-proxy-temp-path=/opt/Nginx/temp/proxy \
--http-fastcgi-temp-path=/opt/Nginx/temp/fcgi \
--lock-path=/var/run/Nginx/Nginx.lock \
--with-http_ssl_module \
--with-http_sub_module \
--with-http_gzip_static_module \
--with-http_stub_status_module \
--with-http_flv_module \
--with-debug
 
make
make install

# End www.jb51.cc

重新启动Nginx


[root@mail Nginx-0.8.39]# Nginxctl stop
Shutting down Nginx:
 
[root@mail vhosts]# Nginxctl start
Starting Nginx: success Nginx
## 注:这个Nginxctl是自己写的脚本
[root@mail vhosts]# /opt/Nginx/sbin/Nginx -V
Nginx version: netbig/0.0.0
built by gcc 3.4.6 20060404 (Red Hat 3.4.6-3)
TLS SNI support disabled
configure arguments: --prefix=/opt/Nginx --sbin-path=/opt/Nginx/sbin/Nginx --conf-path=/opt/Nginx/conf/Nginx.conf --pid-path=/var/run/Nginx/Nginx.pid 
--error-log-path=/var/log/Nginx/error.log --http-log-path=/var/log/Nginx/access.log --http-proxy-temp-path=/opt/Nginx/temp/proxy 
--http-fastcgi-temp-path=/opt/Nginx/temp/fcgi --lock-path=/var/run/Nginx/Nginx.lock --with-http_ssl_module --with-http_sub_module 
--with-http_gzip_static_module --with-http_stub_status_module --with-http_flv_module --with-debug

# End www.jb51.cc

查看 response header


[root@mail vhosts]# curl -I http://www.tech.zhangben.com
HTTP/1.1 200 OK
Server: netbig/0.0.0
Date: Tue,01 Jun 2010 07:09:11 GMT
Content-Type: text/html; charset=utf-8
Connection: keep-alive
Vary: Cookie

# End www.jb51.cc
原文链接:https://www.f2er.com/php/527874.html

猜你在找的PHP相关文章