gpt4 book ai didi

Apache 虚拟主机无法正常工作

转载 作者:行者123 更新时间:2023-12-04 07:23:19 25 4
gpt4 key购买 nike

关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。












想改进这个问题?将问题更新为 on-topic对于堆栈溢出。

1年前关闭。




Improve this question




不知何故,我的虚拟主机文件无法正常工作我不知道为什么 - 我敢打赌这只是我早安大脑中的一个邮件功能:p

现在,我通过指向/etc/apache2/目录中可用站点的符号链接(symbolic link)启用了两个站点,例如:

0 Nov 21 12:24 000-default -> ../sites-available/default
0 Nov 21 14:52 001-site -> ../sites-available/site

我的 VHosts 文件如下所示:

默认
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName (the IP Address from my Server)
ServerAlias (the 2nd IP Address from my Server)
DocumentRoot /var/www/default
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/default>
Options FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>

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

ErrorLog ${APACHE_LOG_DIR}/error.log
LogLevel warn

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

地点
<VirtualHost *:80>
ServerAdmin myname@example.de
DocumentRoot /var/www/site/
ServerName jobbörse-köln.de
ServerAlias www.example.de ww.example.de w.example.de

<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/site>
Options FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>

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

ErrorLog ${APACHE_LOG_DIR}/site-error.log
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/site-access.log combined
</VirtualHost>

不知何故,当我继续“example.de”时,我进入了默认目录而不是站点目录。
甚至日志文件:
site-error.log
site-access.log

保持 0 字节......我做错了什么?我敢打赌这是一件愚蠢而简单的事情......

最佳答案

您正在为两个虚拟主机条目使用默认的 80 端口。所以我希望你使用 NameVirtualHost *:80 作为配置。

在您共享的配置中 VirtualHost 在端口 80 上重叠,因此第一个具有优先权。

关于Apache 虚拟主机无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20147305/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com