导航
  • 全部
...

Nginx 经常不处理请求

fanstast 2016-08-23 04:35:06
症状:最近网站经常突然出现长时间等待服务器响应,等待时间长达几分钟。莫名其妙的症状,已经把服务器重装重新配置环境还是有问题,着实摸不着头脑。麻烦大佬看看nginx配置哪里出了问题,分全在这了。

memcached MAXCONN=5000

一般一天需要处理 30W PV

出现问题时
本地链接数
527 127.0.0.1


正常时
2000 127.0.0.1


详细站点nginx配置:


  1. fastcgi_cache_path /tmp/wpcache levels=1:2 keys_zone=WORDPRESS:512m inactive=1d max_size=10G;
  2. fastcgi_cache_path /tmp/nologin levels=1:2 keys_zone=nologin:512m inactive=1d max_size=10G;
  3. fastcgi_temp_path /tmp/temp;
  4. fastcgi_cache_key "$scheme$request_method$host$request_uri";
  5. fastcgi_cache_use_stale error timeout invalid_header http_500;
  6. #忽略一切nocache申明,避免不缓存伪静态等
  7. fastcgi_ignore_headers Cache-Control Expires Set-Cookie;
  8. server {
  9. listen 8.8.8.8:443 ssl reuseport;
  10. server_name domain name;
  11. ssl on;
  12. ssl_certificate /root/letssl/domain.crt;
  13. ssl_certificate_key /root/letssl/domain.key;
  14. ssl_dhparam /root/letssl/dhparam.pem;
  15. ssl_prefer_server_ciphers on;
  16. ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
  17. ssl_ciphers "ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES128-SHA256:DHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-SHA256:AES128-SHA256:AES256-SHA:AES128-SHA:DES-CBC3-SHA:HIGH:!aNULL:!eNULL:!EXPORT:!DES:!MD5:!PSK:!RC4";
  18. #ssl_ciphers EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH;
  19. ssl_session_cache shared:SSL:50m;
  20. ssl_session_timeout 1d;
  21. ssl_session_tickets on;
  22. ssl_session_ticket_key /root/letssl/session_ticket.key;
  23. ssl_stapling on;
  24. ssl_stapling_verify on;
  25. ssl_trusted_certificate /root/letssl/domain.crt;
  26. resolver 8.8.8.8 valid=300s;
  27. resolver_timeout 10s;
  28. add_header Strict-Transport-Security "max-age=31536000; includeSubdomains;";

  29. root /data/wwwroot/domain;
  30. access_log /data/wwwlogs/domain_nginx.log combined;
  31. index index.html index.htm index.jsp index.php;

  32. include /usr/local/nginx/conf/rewrite/pagespeed.conf;

  33. if ($host = 'www.domain' ) {
  34. rewrite ^/(.*)$ https://domain/$1 permanent;
  35. }

  36. location ^~ /xmlrpc.php {
  37. deny all;
  38. }

  39. location /.well-known/acme-challenge/ {
  40. alias /tmp/challenges/.well-known/acme-challenge/;
  41. try_files $uri =404;
  42. }

  43. location / {
  44. try_files $uri $uri/ /index.php?$args;
  45. }
  46. rewrite /wp-admin$ $scheme://$host$uri/ permanent;

  47. if ( $query_string ~* ".*[\;'\<\>].*" ){
  48. return 404;
  49. }

  50. location ~* \.(ini|gz|zip|tar)$ {
  51. deny all;
  52. }

  53. set $login_cache 1;
  54. set $nlogin_cache 0;
  55. if ($http_cookie ~* "wordpress_logged_in") {
  56. set $login_cache "${login_cache}0";
  57. set $nlogin_cache 1;
  58. }
  59. if ($request_uri ~* "/[0-9]+.html|/category/|/musiclive") {
  60. set $login_cache "${login_cache}2";
  61. }
  62. if ($request_method = POST) {
  63. set $h_cache 1;
  64. }
  65. if ($query_string != "") {
  66. set $h_cache 1;
  67. }
  68. if ($request_uri ~* "/wp-admin/|/user/|/xmlrpc.php|wp-.*.php|/feed/|index.php|sitemap(_index)?.xml") {
  69. set $h_cache 1;
  70. }
  71. if ($request_uri ~ "/go") {
  72. set $h_cache 0;
  73. }
  74. if ($http_cookie ~* "fuck") {
  75. set $h_cache 1;
  76. set $h_cache 1;
  77. }
  78. if ( $nlogin_cache = "0" ){
  79. set $login_cache 0;
  80. set $cachedr "nologin";
  81. }
  82. if ( $login_cache = "102" ){
  83. set $wp_cache 0;
  84. set $cachedr "WORDPRESS";
  85. }
  86. if ( $h_cache = "0" ){
  87. set $wp_cache 0;
  88. }
  89. if ( $h_cache = "1" ){
  90. set $wp_cache 1;
  91. }

  92. location ~ [^/]\.php(/|$) {
  93. #fastcgi_pass remote_php_ip:9000;
  94. fastcgi_pass unix:/dev/shm/php-cgi.sock;
  95. fastcgi_index index.php;
  96. include fastcgi.conf;
  97. #缓存
  98. fastcgi_cache_bypass $wp_cache;
  99. fastcgi_no_cache $wp_cache;
  100. add_header X-Cache "$upstream_cache_status";
  101. fastcgi_cache $cachedr;
  102. fastcgi_cache_valid 200 1d;
  103. fastcgi_cache_valid 301 302 404 1h;
  104. }

  105. location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|ico|ttf|woff)$ {
  106. expires 360d;
  107. access_log off;
  108. }

  109. location ~ .*\.(js|css)?$ {
  110. expires 30d;
  111. access_log off;
  112. }
  113. }
...全文
给本帖投票
892 1 打赏 收藏 转发到动态 举报
写回复
用AI写文章
1 条回复
切换为时间正序
请发表友善的回复…
发表回复
yeksama 2016-08-26
  • 打赏
  • 举报
回复
php问题哦,你看看php

25,980

社区成员

发帖
与我相关
我的任务
社区描述
高性能WEB开发
社区管理员
  • 高性能WEB开发社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧

手机看
关注公众号

关注公众号

客服 返回
顶部