|
|
为了配置openwebmail,建设apache2+CGI...
我的操作方法如下:
1、使用./configure --enable-so --enable-cgi安装了APACHE2
2、修改httpd.conf
ScriptAlias /cgi-bin/ "/usr/local/apache2/cgi-bin/"
<IfModule mod_cgid.c>
Scriptsock run/httpd.cgid
</IfModule>
ScriptAliased
<Directory "/usr/local/apache2/cgi-bin">
AllowOverride None
Options ExecCGI
# Options None
Order allow,deny
Allow from all
</Directory>
启动APACHE2,打开显示如下:
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, biaoming@126.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
问题,这是什么原因造成的呢 |
|