今日、kubuntuを13.10に更新しましたが、以前は完全に機能していた仮想ホストが機能しなくなりました。
s2ensite
そしてa2dissite
コマンドでもファイルはで私が対応サイトからそれらを削除し、再度、それらを有効にするためにしようと試みたが、彼らは存在しません、まだapacheのクレームサイト対応のサイト-aviableであるとした「サイトxxxxxxは存在しない」と主張します。
これが私の仮想ホストの1つです。それらは基本的にすべてこのようなものです。
<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は機能しており、有効化および無効化できます。
より完全な回答については、以下をご覧ください。askubuntu.com
—
362682