1

ローカルホストで apache2 仮想ホストをセットアップしようとして数日後、私は真剣に忍耐力を失っています。皆さん、私を助けてくれますか? すべて問題ないようですが、ブラウザで local.droidbb.com にアクセスしようとすると、

ページを読み込めません。URL http://local.droidbb.com/の読み込み中に問題が発生しました。宛先に接続できません。

ここにすべての関連ファイルがあります(少なくとも私はそう思います)。

etc/hosts ファイル

#127.0.0.1  ingress localhost.localdomain   localhost
127.0.0.1   local.droidbb.com
#127.0.1.1  debian.resnet.gre.ac.uk debian
#127.0.1.1  debian.local.droidbb.com debian

# The following lines are desirable for IPv6 capable hosts
::1     ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

etc/apache2/ports.confファイル

# If you just change the port or add more ports here, you will likely also
# have to change the VirtualHost statement in
# /etc/apache2/sites-enabled/000-default
# This is also true if you have upgraded from before 2.2.9-3 (i.e. from
# Debian etch). See /usr/share/doc/apache2.2-common/NEWS.Debian.gz and
# README.Debian.gz

NameVirtualHost *
Listen 80

<IfModule mod_ssl.c>
    # If you add NameVirtualHost *:443 here, you will also have to change
    # the VirtualHost statement in /etc/apache2/sites-available/default-ssl
    # to <VirtualHost *:443>
    # Server Name Indication for SSL named virtual hosts is currently not
    # supported by MSIE on Windows XP.
    Listen 443
</IfModule>

<IfModule mod_gnutls.c>
    Listen 443
</IfModule>

etc/apache2/sites-available/local.droidbb.comファイル

<VirtualHost *>

    ServerAdmin webmaster@localhost

    ServerName local.droidbb.com



    DocumentRoot /var/www/local.droidbb.com/public_html/

    <Directory />

            Options FollowSymLinks Includes -Indexes

            AllowOverride All

            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



    # Possible values include: debug, info, notice, warn, error, crit,

    # alert, emerg.

    LogLevel warn



    CustomLog ${APACHE_LOG_DIR}/access.log combined

</VirtualHost>

問題はどこだ?ああ、私は仮想ボックスでLinux Debian x64を実行していることに言及する必要があります。

4

2 に答える 2

1

ファイルを移動する

/etc/apache2/sites-available/local.droidbb.com

/etc/apache2/sites-enabled/local.droidbb.com

サイト内のすべて-利用可能は無効になっています:)

于 2013-01-07T17:07:11.183 に答える
0

Apacheはうまく動作していますか?Apache の error.log に何かありますか? apache が正常に動作していないようです。(考えられる構成の問題またはその他)

于 2012-12-07T16:12:44.550 に答える