lnmp下使用fastcgi_cache为wordpress加速

location / {        if (-f $request_filename/index.html){                    rewrite (.*) $1/index.html break;            }        if (-f $request_filename/index.php){                    rewrite (.*) $1/index.php;            }        if (!-f $request_filename){                    rewrite (.*) /index.php;            }    }       location ~ /index\.php.*$ {        fastcgi_pass  unix:/tmp/php-cgi.sock;        fastcgi_index index.php;        include fcgi.conf;       # fastcgi cache       #srcache_store_no_cache on;       #srcache_response_cache_control off;       #fastcgi_pass_header Set-Cookie;       # 默认缓存        set $nocache “”;        set $cache_key “$scheme$request_method$host$request_uri”;                if ($http_cookie ~* “comment_author_|wordpress|wp-postpass_” ) {            set $nocache “Y”;        }        if ($http_user_agent ~* (2.0\ MMP|240×320|400X240|AvantGo|BlackBerry|Blazer|Cellphone|Danger|DoCoMo|Elaine/3.0|EudoraWeb|Googlebot-Mobile|hiptop|IEMobile|KYOCERA/WX310K|LG/U990|MIDP-2.|MMEF20|MOT-V|NetFront|Newt|Nintendo\ Wii|Nitro|Nokia|Opera\ Mini|Palm|PlayStation\ Portable|portalmmm|Proxinet|ProxiNet|SHARP-TQ-GX10|SHG-i900|Small|SonyEricsson|Symbian\ OS|SymbianOS|TS21i-10|UP.Browser|UP.Link|webOS|Windows\ CE|WinWAP|YahooSeeker/M1A1-R2D2|iPhone|iPod|Android|BlackBerry9530|LG-TU915\ Obigo|LGE\ VX|webOS|Nokia5800)) {    [...]