WordPress笔记

安装lamp

1
$wget -c http://lnmporg.duapp.com/lnmp/lnmp1.3-full.tar.gz && tar zxf lnmp1.3-full.tar.gz && cd lnmp1.3-full &&sudo ./install.sh lnmp

下载文件md5sum校对一下
其它默认就好了

下载WordPress

1
2
3
4
$cd /home/wwwroot/
$sudo wget https://cn.wordpress.org/wordpress-4.7.3-zh_CN.zip
$sudo tar -zxvf wordpress-4.7.3-zh_CN.tar.gz
$sudo cp -R wordpress/* default/

浏览器访问
http://localhost/phpmyadmin/
创建数据库,然后访问
http://localhost/wp-admin/install.php?language=zh_CN
完成安装

安装fancyindex列表

下载fancyindex

1
git clone https://github.com/aperezdc/ngx-fancyindex.git

解压文件夹并移动到nginx目录下

1
cp ngx-fancyindex /usr/local/nginx -r

编辑lnmp1.3-full下的lnmp.conf文件
Nginx_Modules_Options一行加入

1
--add-module=/usr/local/nginx/ngx-fancyindex

保存
使用lnmp1.3-full下的./upgrade.sh脚本升级nginx程序
会按照新配置重新编译nginx,之后查看
nginx -V
在编译参数里查看是否成功

打开nginx配置文件
/usr/local/nginx/conf/nginx.conf
在server里面加入

1
2
3
4
5
6
7
8
9
10
11
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;

fancyindex on;
fancyindex_name_length 100;
fancyindex_exact_size off;
fancyindex_localtime on;
fancyindex_footer /footer.html;
fancyindex_header /header.html;
fancyindex_ignore footer.html header.html;

接下来就在站点根目录下创建并编辑header.htmlfooter.html两个文件即可