Apache2 cgi-bin 位置未更新
Apache2 cgi-bin location not updating
首先感谢您的帮助。我正在尝试将网站移植到 linux (Raspian Jessie) 的新版本,但遇到了一些问题,apache2 是 2.4.10 版。主要是让 cgi-bin 文件夹正确更新。我已经更新了 /etc/apache2/sites-available/ 中的默认文件以反映我希望目录所在的位置,但 apache 仍在尝试使用旧的 cgi-bin 位置,因此当我尝试时给我一个 404在网络浏览器中查看页面。我目前的配置如下:
<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 文件,我似乎无法将其更新到新位置。有什么想法。
您没有正确使用 "Include" 来加载您的 VirtualHost 文件,因此 apachectl -S 输出在 "VirtualHost configuration:" 之后没有显示任何内容,它会继续到下一部分。它应该列出你的虚拟主机并说它是默认的,因为它只有一个。
检查您的包含指令
首先感谢您的帮助。我正在尝试将网站移植到 linux (Raspian Jessie) 的新版本,但遇到了一些问题,apache2 是 2.4.10 版。主要是让 cgi-bin 文件夹正确更新。我已经更新了 /etc/apache2/sites-available/ 中的默认文件以反映我希望目录所在的位置,但 apache 仍在尝试使用旧的 cgi-bin 位置,因此当我尝试时给我一个 404在网络浏览器中查看页面。我目前的配置如下:
<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 文件,我似乎无法将其更新到新位置。有什么想法。
您没有正确使用 "Include" 来加载您的 VirtualHost 文件,因此 apachectl -S 输出在 "VirtualHost configuration:" 之后没有显示任何内容,它会继续到下一部分。它应该列出你的虚拟主机并说它是默认的,因为它只有一个。
检查您的包含指令