wordpress_id: '103' categories: - 未分类
静态化网站:
注意:
wget有个bug,处理中文url下载有问题,最好不要出现中文的文件
# cat ~/sync-site.sh
cd /var/www/ || exit 1
wget -m -nH -x -k 127.0.0.1
echo '
' > error.html
站点nginx配置:
server {
listen 8000; ## listen for ipv4; this line is default and implied
error_page 403 404 500 502 503 504 /error.html;
server_name test.com;
location / {
root /var/www/ ;
expires 30d ;
add_header Cache-Control private;
access_log /dev/null ;
break;
}
}