最近、Apacheでテストサーバーをセットアップしようとしました。サイトはドメインで実行する必要がありますwww.mytest.com
。いつも403 Forbidden
エラーが出ます。Ubuntu 10.10サーバーエディションを使用しています。ドキュメントルートはdirの下にあり/var/www
ます。以下は私の設定です:
/ var / wwwのコンテンツ
ls -l /var/www/
total 12
drwxr-xr-x 2 root root 4096 2011-08-04 11:26 mytest.com
-rwxr-xr-x 1 root root 177 2011-07-25 16:10 index.html
サーバー上のホストファイルのコンテンツ(IP 192.168.2.5)
cat /etc/hosts
127.0.0.1 localhost
127.0.1.1 americano
192.168.2.5 americano.mytest.com www.mytest.com
# The following lines are desirable for IPv6 capable hosts
::1 localhost ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
サイト構成
<VirtualHost *>
ServerAdmin admin@mytest.com
ServerName www.mytest.com
ServerAlias mytest.com
DocumentRoot "/var/www/mytest.com"
ErrorLog /var/log/apache2/mytest-error_log
CustomLog /var/log/apache2/mytest-access_log combined
#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "/var/www/mytest.com">
Options -Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
.htaccess
ドキュメントルートにファイルがありません。権限が正しく設定されている(www-dataで読み取り可能)。
デスクトップからIPアドレスを入力すると、サイトが正しく表示されます。www.mytest.com
サーバーのIP を指すようにデスクトップのhostsファイルを変更しました。私はそれを使用すると、私が得ます403
。このサイトの多くの機能はサイト名に依存するため、ドメイン名でサイトにアクセスできる必要があります。
別のファンキーなことは、すべてのログファイルが正しく作成されていても、このエラーに関する情報がないことです。
ハマった。誰か助けてもらえますか?
VirtualHost configuration: 192.168.2.5:* www.mytest.com (/etc/apache2/sites-enabled/mytest.com:1) Syntax OK
秒1を返します: /etc/apache2/ports.conf:Listen 80 /etc/apache2/ports.conf: Listen 443 /etc/apache2/ports.conf: Listen 443 /etc/apache2/conf.d/virtual.conf:NameVirtualHost *
sudo sh -c ". /etc/apache2/envvars; apache2 -S"
(仮想ホストのリスト)および:sudo sh -c ". /etc/apache2/envvars; grep -R Listen /etc/apache2/*|grep -v \"#\"; grep -R NameVirtual /etc/apache2/*|grep -v \"#\""