13.10へのアップデート後にApache仮想ホストが機能しなくなりました


25

今日、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

回答:


42

Ubuntu 13.10とその亜種はApache 2.4に移行し、Apache 2.4は.confデフォルトで有効な仮想ホスト設定ファイルを要求しています。こちらをご覧ください:

http://lyemium.com/content/virtual-host-issues-when-upgrading-apache-22-24

仮想ホストの設定ファイルの名前を変更して.conf、すべてが機能するようにしました!


この問題は、アップグレード後2016年に数時間かかりました。ありがとう
ロドリゴ
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.