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
  • 相关阅读:
    IntelliJ IDEA 2020.1.1中java web项目的配置
    Js查漏补缺10-数组、栈、队列、回调函数等
    Js查漏补缺09-this对象
    Js查漏补缺08-闭包
    Js查漏补缺07-匿名函数应用到的框架
    Js查漏补缺06-匿名函数的用法
    Js查漏补缺05-函数
    Js查漏补缺04-Object类型
    Js查漏补缺03-循环结构
    Runnabler
  • 原文地址:https://www.cnblogs.com/Xingtxx/p/11748725.html
Copyright © 2011-2022 走看看