Apache 中的虚拟服务器导致 101 错误

Apache 中的虚拟服务器导致 101 错误

我已经在我的 VPS 上设置了(好吧,尝试过)Apache VHosting。但现在当我尝试从中加载任何网站时,会出现以下错误:

错误 101(net::ERR_CONNECTION_RESET):连接已重置。

这是我添加的配置文件:

<VirtualHost *:80>
        ServerAdmin webmaster@localhost
        ServerName  photography.web.co.uk

        # Indexes + Directory Root.
        DirectoryIndex index.html
        DocumentRoot /var/www/web.co.uk/htdocs/photography

        # CGI Directory
        ScriptAlias /cgi-bin/ /var/www/web.co.uk/cgi-bin/
        <Location /cgi-bin>
                Options +ExecCGI
        </Location>


        # Logfiles
        ErrorLog  /var/www/web.co.uk/logs/error.log
        CustomLog /var/www/web.co.uk/logs/access.log combined
</VirtualHost>

有人能确定我做错了什么吗?似乎还有其他几个人遇到过类似的问题,但我真的不明白解决方案是什么。

非常感谢!

答案1

<Location /cgi-bin>
   Options +ExecCGI
</Location>

摆脱它;它是不必要的,而且无论如何都不应该在位置中设置。

相关内容