Nginx 优化

隐藏版本号

没有隐藏版本号前可以看到使用的是什么 web 服务以及版本号

/images/posts/Nginx优化/1.png
(图1)

方式一:修改配置文件

1
2
3
4
5
http {
    include       mime.types;
    default_type  application/octet-stream;
    # 关闭版本号,只显示用什么web服务不显示版本号
    server_tokens off;

方式二:修改源码并编译

可以修改服务名称和版本号

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
vim /usr/local/lib64/nginx-1.15.9/src/core/nginx.h

# nginx.h文件,13、14行
#define NGINX_VERSION      "xxxx"               # 版本号
#define NGINX_VER          "nginx/" NGINX_VERSION # 服务名称

# 按自己需求写,之前是怎么写的,就怎么写,无非是在配置之前修改下源码
./configure --prefix=/usr/local/nginx --with-http_ssl_module

make && make install

0%