注册

wordpress静态化

下面这个是结合了很多参考加上自己实践最终确认能用的。不过这个还是跟主题有很大关系。不是所有主题都是可以完全转成静态的。下面这个配置文件是nginx的,apache的用户就没有这样的烦恼了。
大部分主题都是可以使用的,但是有些加了一些动态验证这样代码的,要那样的就只能用fastcgi cache来进行处理了。
这里使用的是wordpress的supercache模块。
upstream php-fpm {
server unix:/var/run/phpfpm.sock;
}

server {
listen 80;
server_name timo.piqiu.me;

root /opt/web/wordpress;
index index.php;

access_log logs/timo.piqiu.me.access.log proxy;
error_log logs/timo.piqiu.me.error.log;

location = /favicon.ico {
log_not_found off;
access_log off;
}

location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}

location ~ /\.svn/* {
deny all;
}

location ~ /\.git/* {
deny all;
}

location /nginx_status {
stub_status on;
access_log off;
}

set $cache_uri $request_uri;

# POST requests and urls with a query string should always go to PHP
if ($request_method = POST) {
set $cache_uri 'null cache';
}
if ($query_string != "") {
set $cache_uri 'null cache';
}

# Don't cache uris containing the following segments
if ($request_uri ~* "(/wp-admin/|/xmlrpc.php|/wp-(app|cron|login|register|mail).php|wp-.*.php|/feed/|index.php|wp-comments-popup.php|wp-links-opml.php|wp-locations.php|sitemap(_index)?.xml|[a-z0-9_-]+-sitemap([0-9]+)?.xml)") {
set $cache_uri 'null cache';
}

# Don't use the cache for logged in users or recent commenters
if ($http_cookie ~* "comment_author|wordpress_[a-f0-9]+|wp-postpass|wordpress_logged_in") {
set $cache_uri 'null cache';
}

# Use cached or actual file if they exists, otherwise pass request to WordPress
location / {
try_files /wp-content/cache/supercache/$http_host/$cache_uri/index.html $uri $uri/ /index.php ;
}
location ~ \.php$ {
try_files /wp-content/cache/supercache/$http_host/$cache_uri/index.html $uri $uri/ /index.php ;
fastcgi_pass php-fpm;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /opt/web/wordpress$fastcgi_script_name;
fastcgi_intercept_errors on;
include fastcgi_params;
#
# fastcgi_cache cache_fastcgi;
#
# fastcgi_cache_valid 200 302 301 24h;
# fastcgi_cache_valid any 1m;
#
# fastcgi_cache_min_uses 1;
#
# fastcgi_cache_use_stale error timeout invalid_header http_500;
# fastcgi_cache_key $request_method://$host$request_uri;
}

# Cache static files for as long as possible
location ~* .(ogg|ogv|svg|svgz|eot|otf|woff|mp4|ttf|css|rss|atom|js|jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf)$ {
expires max; log_not_found off; access_log off;
}

location ~ ^/(status|ping)$ {
include /opt/server/nginx/conf/fastcgi_params;
fastcgi_pass unix:/var/run/phpfpm.sock;
fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
allow 127.0.0.1;
deny all;
}
}

0 个评论

要回复文章请先登录注册