我今天将我的 kubuntu 更新到 13.10,之前运行良好的虚拟主机现在不再工作了。
和s2ensite
命令a2dissite
声称“站点 xxxxxx 不存在”即使文件在 sites-aviable 中并且在 sites-enabled 中,我尝试将它们从 sites-enabled 中删除,然后再次启用它们,但 apache 仍然声称它们不存在。
这是我的一个虚拟主机。它们基本上都是这样的。
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName expsite.local
DocumentRoot /var/www/expsite/htdocs
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/expsite/htdocs/>
Options Indexes FollowSymLinks MultiViews
AllowOverride FileInfo
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>
CustomLog /var/www/expsite/logs/access.log combined
ErrorLog /var/www/expsite/logs/error.log
LogLevel warn
# Alias /doc/ "/usr/share/doc/"
# <Directory "/usr/share/doc/">
# Options Indexes MultiViews FollowSymLinks
# AllowOverride None
# Order deny,allow
# Deny from all
# Allow from 127.0.0.0/255.0.0.0 ::1/128
# </Directory>
</VirtualHost>
000-default 正在运行,我可以启用和禁用它。
答案1
Ubuntu 13.10 及其变体已迁移至 Apache 2.4,Apache 2.4 默认启用虚拟主机配置文件.conf
。请参见:
http://lyemium.com/content/virtual-host-issues-when-upgrading-apache-22-24
我刚刚将我的 vhost 配置文件重命名为以 结尾.conf
,一切正常!