CentOS 5.5下邮件服务器Postfix安装(5)

或者
------------------------------------------------------------------------------------
httpd.conf里增加:
LoadModule fastcgi_module modules/mod_fastcgi.so
<Ifmodule mod_fastcgi.c>
FastCgiExternalServer /usr/bin/dispatch.fcgi -host 127.0.0.1:8888 -idle-timeout 240
</Ifmodule>

Alias /extmail/cgi/ /usr/bin/dispatch.fcgi/
Alias /extmail /var/www/extsuite/extmail/html
Alias /extman/cgi/ /usr/bin/dispatch.fcgi/
Alias /extman /var/www/extsuite/extman/html
<Location "/extmail/cgi">
  SetHandler fastcgi-script
</Location>
<Location "/extman/cgi">
  SetHandler fastcgi-script
</Location>
-----------------------------------------------------------------------------------
要注意,上面的/usr/bin/dispatch.fcgi并不存在,但是必须按上面的写。有些用户自作聪明指向真实的dispatch.fcgi程序,反而用不了,这里大家一定要注意,按上面的配置写好。

另外,extmail和extman最好在同一个目录下,可以最少避免问题。

然后启动dispatch.fcgi:

/var/www/extsuite/extmail/dispatch-init start

并重新启动apache。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/0701b129ce47ffa05152b072c37a541f.html