美文网首页
nginx 根据userAgent屏蔽请求

nginx 根据userAgent屏蔽请求

作者: droxy | 来源:发表于2019-07-28 17:38 被阅读0次

    server {

    listen 443;

    server_name www.shangmayuan.com;

    ssl on;

    ssl_certificate  /data/nginx/cert.pem;

    ssl_certificate_key  /data/nginx/cert.key;

    ssl_session_timeout 5m;

    ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!AEH:!FC4;

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;

    ssl_prefer_server_ciphers on;

    #禁止user-agent

    if ($http_user_agent ~ "Cloudfind/1.0|http://www.google.com/bot.html|http://www.baidu.com/search/spider.htm" )

    {

      return 403;

    }

    location / {

    proxy_pass http://localhost:8080/;

    proxy_redirect off;

    proxy_set_header X-Real-IP $remote_addr;

    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

    proxy_set_header Host $host:$server_port;

    proxy_set_header X-Forwarded-Proto $scheme;

    }

    error_page  500 502 503 504  /404.html;

    location = /404.html {

    root  html;

    }

    相关文章

      网友评论

          本文标题:nginx 根据userAgent屏蔽请求

          本文链接:https://www.haomeiwen.com/subject/gufnvttx.html