
nginx+ssl+php-fpm 配置
server {listen 443 ssl;
ssl_certificate 证书;
ssl_certificate_key 私钥;
keepalive_timeout 70;
server_name 域名;
index index.html index.htm index.php;
root 目录地址;
access_log ...

thinkphp3.2.3 连接redis步骤
1、依赖PHP-redis 扩展 http://windows.php.net/downloads/pecl/releases/redis/ 找到适合vc库版本的包(32位)2、ThinkCacheDriverRedis在构造函数中加入$this->handler->auth($options['auth']); //加入令牌
$this->handler->...