1 、 vsftp 在安装以后我们要进行以下操作。
a: 编辑

vi /etc/vsftpd/vsftpd.conf

在末尾加上

chroot_list_enable=YES     
chroot_list_file=/etc/vsftpd/chroot_list
#以上 2 句控制用户在自己的目录
pasv_enable=yes
pasv_promiscuous=no
pasv_max_port=33610
pasv_min_port=33601
#在 iptables 中设置允许 20,21 端口访问服务器, 同时允许 33601-33610 端口访问服务器
#asv_address
#以上用来指定 ftp 使用被动连接时的端口范围.

重启

vsftpd /etc/init.d/vsftpd restart

2 、 WordPress 的 llsmp 中 nginx 配置文件:

server {
        set     $cache  /wp-content/cache/supercache/$host;
        listen         ip:80;
        server_name  www.94seo.com;
        location / {
                root   /home/wwwroot/www.94seo.com/html;
                index  index.html index.htm index.php;
                add_header Content-Type 「text/html; charset=UTF-8″;
                add_header Content-Encoding 「gzip」;
                try_files $cache/$uri/index.html.gz @backend;
                }
#以上是 WordPress 安装了 supercache 插件后使用.
        location ~ /.ht {
                deny all;
                }
#禁止访问.htacess 文件.
        location ~* .(jpg|jpeg|png|gif|css|js|swf|mp3|avi|flv|xml|zip|rar)$ {
                        root /home/wwwroot/www.94seo.com/html;
                        gzip on;
                        gzip_types  text/plain application/x-javascript text/css application/xml;
                        expires    30d;
                        break;
                }
#对静态文件,nginx 自行处理,不用转到后端服务器
        location @backend {
                proxy_pass http://127.0.0.1:80;
                include proxy.conf;
                }
#对于其他的文件,通过 backend 送到后端给 litespeed 处理
}