1.隐藏版本号:server_tokens off;
    Http漏洞修复 - 图1
    2. 禁止PUT、Delete、Options等仅保留GET和POST方法:
    在location下增加
    if ( $request_method !~* GET|POST ) {
    return 403;
    }
    Http漏洞修复 - 图2