每一个可以努力的日子,都是一份厚礼。
2011年7 月
定时自动备份网站和数据库的脚本
2011 7 月 29th
Nginx PHP-FPM 验证码无法显示故障排查
2011 7 月 2nd
网站迁移至Nginx php-fpm下运行,发现验证码显示红叉,无法使用。检查phpinfo(),确定GD模块已经加载。查看日志,发现报错
PHP Fatal error: Call to undefined function imagettfbbox() in …
网站由Apache迁移至Nginx + FastCGI步骤
2011 7 月 1st
一、安装Nginx
源码安装
yum pcre-devel wget http://nginx.org/download/nginx-1.0.4.tar.gz tar zxvf nginx-1.0.4.tar.gz cd nginx-1.0.4/ ./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module make make install
- 默认配置文件在<prefix>/conf/nginx下
- 程序文件在<prefix>/sbin/nginx
- 日志放在了<prefix>/logs/
