Posts Tagged ‘Apache’
rhms-0.5.0 发布了
Written by bixuan on 2008年06月29号 – 19:30邮件服务器解决方案 rhms-0.5.0 发布了。这个版本的亮点主要有:
* 增加了 SPF 检测功能,有效抵挡垃圾邮件;
* 增加了 DKIM/DomainKeys 的检测和签署功能;
* 增加了 Horde WebMail 1.1;
* 为 Apache 增加了 TLS/SSL 支持;
* 更灵活的用户收发邮件权限控制;
* 增加了对已有 MySQL 环境的支持;
* Postfix, Dovecot, Amavisd-new, SquirrelMail 都升级到了最新版本;
下载地址:
Read more »
Tags: amavisd-new, Apache, dovecot, mail, mysql, postfix, rhms, server, spf, squirrelmail, ssl
Posted in Softs, 运维小技巧 | No Comments »
php-fpm文档中文翻译
Written by bixuan on 2008年05月1号 – 22:05版权声明:转载时请以超链接形式标明文章原始出处和作者信息及本声明
http://syre.blogbus.com/logs/20092011.html
原文链接:http://php-fpm.anight.org/
fast-cgi是做啥用的
FastCGI是一个可伸缩的,高速地在web server和脚本语言间交互的接口。关于FastCGI技术的更多信息可以在官方网站和这里看到。
多数流行的web server都支持FastCGI。包括Apache(mod_fastcgi和mod_fcgid),Zeus,nginx和lighttpd。
FastCGI的主要优点是把动态语言和web server分离开来。这种技术允许把web server和动态语言运行在不同的主机上,以大规模扩展和改进安全性而不损失生产效率。
php-fpm可以和任何支持远端FastCGI的web server工作。
Tags: Apache, fastcgi, fpm, lighttpd, Nginx, PHP, php-fpm, web server
Posted in 运维小技巧 | No Comments »
Keep-Alive: timeout=5, max=100
Written by bixuan on 2008年04月18号 – 22:51Keep-Alive: timeout=5, max=100
timeout:过期时间5秒(对应httpd.conf里的参数是:KeepAliveTimeout),max过了100秒,强制断掉连接
就是在timeout时间内又有新的连接过来,同时max会自动减1,直到为0,强制断掉。见下面的四个图,注意看Date的值(前后时间差都是在5秒之内)!




Tags: Apache, httpd, KeepAlive, max, timeout
Posted in 运维小技巧 | 1 Comment »
apache上关闭etag
Written by bixuan on 2007年12月21号 – 13:10etag是把双刃剑,就要看各位看官如何用它。
在apache上关闭etag最简单的方法就是不要加载:mod_header.so
Tags: Apache, etag, header, mod
Posted in 运维小技巧 | No Comments »
mod_encoding:让apache的webdav支持中文文件名
Written by bixuan on 2007年11月22号 – 11:11mod_encoding:让apache的webdav支持中文文件名
Tags: Apache, encodeing, mod, webdav
Posted in 运维小技巧 | No Comments »