Apache2 cgi-bin位置未更新

时间:2016-08-23 20:34:53

标签: linux apache raspberry-pi debian cgi-bin

首先感谢您的帮助。我试图将网站移植到新版本的linux(Raspian Jessie),并且遇到一些问题,apache2是版本2.4.10。主要是让cgi-bin文件夹正确更新。我已经更新了/ etc / apache2 / sites-available /中的默认文件,以反映我想要该目录的位置,但是apache仍在尝试使用旧的cgi-bin位置,因此给了我一个404当我尝试在Web浏览器中查看页面时。我目前的配置如下:

<VirtualHost *:80>
    ServerAdmin webmaster@localhost

    DocumentRoot /var/www/html
    <Directory />
            Options FollowSymLinks
            AllowOverride None
    </Directory>
    <Directory /var/www/html/>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride ALL
            Order allow,deny
            allow from all
    </Directory>

    ScriptAlias /cgi-bin/ /var/www/cgi-bin/
    <Directory "/var/www/cgi-bin">
            AllowOverride None
            Options  +ExecCGI -MultiViews +SymLinksIfOwnerMatch
            Order allow,deny
            Allow from all
    </Directory>

    ErrorLog ${APACHE_LOG_DIR}/error.log

    # Possible values include: debug, info, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog ${APACHE_LOG_DIR}/access.log combined</VirtualHost>

错误日志表明apache仍然在/ usr / lib / cgi-bin /目录中查找cgi文件,我似乎无法将其更新到新位置。任何想法。

1 个答案:

答案 0 :(得分:0)

您没有正确使用“包含”来加载VirtualHost文件,因此apachectl -S输出在“VirtualHost配置:”之后没有显示任何内容,它会继续下一部分。它应该列出你的虚拟主机并说它是默认的,因为它只有一个。

查看您的Include指令