zoukankan      html  css  js  c++  java
  • nginx 基本安全优化

    [root@izbp18tnigcymjlz2mm69lz conf]# curl -i 127.0.0.1
    HTTP/1.1 200 OK
    Server: nginx/1.6.3  <<<这个位置明显暴露服务器版本及软件名称
    Date: Sun, 27 Oct 2019 11:40:44 GMT
    Content-Type: text/html
    Content-Length: 612
    Last-Modified: Sun, 15 Sep 2019 12:40:27 GMT
    Connection: keep-alive
    ETag: "5d7e313b-264"
    Accept-Ranges: bytes
    
    <!DOCTYPE html>
    <html>
    <head>
    <title>Welcome to nginx!</title>
    <style>
        body {
             35em;
            margin: 0 auto;
            font-family: Tahoma, Verdana, Arial, sans-serif;
        }
    </style>
    </head>
    <body>
    <h1>Welcome to nginx!</h1>
    <p>If you see this page, the nginx web server is successfully installed and
    working. Further configuration is required.</p>
    
    <p>For online documentation and support please refer to
    <a href="http://nginx.org/">nginx.org</a>.<br/>
    Commercial support is available at
    <a href="http://nginx.com/">nginx.com</a>.</p>
    
    <p><em>Thank you for using nginx.</em></p>
    </body>
    </html>

    隐藏版本号

    在nginx.conf

    server_tokens off;
    http {
        
         server_tokens off;
    
    }

    server_tokens官方说明

    syntax: server_tokens on|off; on w为开启状态。off为关闭状态。
    default: server_tokens on 不做配置默认参数
    context: http,server,location 为可放的位置

    2、更改源码隐藏软件及版本号

    需要修改3个源文件

    • nginx.h
    • ngx_http_header_filter_module.c
    • ngx_http_special_response.e
  • 相关阅读:
    TableEx 控件 v1.0 [原创][免费][开源]
    js刷新页面
    SimpleAjax 开发包 v3.1 (简单的Ajax)
    oracle中的''空字符串和null居然是等价的
    HTTP 错误大全
    Ext2.0 form使用实例
    isqlweb (Web版 SQL Server 管理器)
    关于软件版本
    我的第一个C++程序——方块游戏 v1.0
    轻松实现UltraWebGrid中的分页控制
  • 原文地址:https://www.cnblogs.com/Xingtxx/p/11748725.html
Copyright © 2011-2022 走看看