コンピューターにいくつかのVirtalHostsをセットアップしています。コンプのIPアドレスを使用して別のPCから現在作業しているサイトにアクセスしたいのですが、試したすべての構成で別の仮想ホスト(実際には最初に設定した仮想ホスト)に移動し続けます私のコンプ)。apache virtualhost configsを設定して、IPアドレスで目的のサイトに確実に移動できるようにするにはどうすればよいですか。
/etc/apache2/sites-available/site-i-want-to-show-up-with-ip-address.confに含まれるもの:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerAlias currentsite.com
DocumentRoot /path/to/root/of/site-i-want-to-show-up
ServerName localhost
ScriptAlias /awstats/ /usr/lib/cgi-bin/
CustomLog /var/log/apache2/current-site-access.log combined
</VirtualHost>
また、/ etc / apache2 / sites-available/site-that-keeps-showing-up.confには次のものが含まれています。
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerAlias theothersite.com
DocumentRoot /path/to/it
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
</VirtualHost>
誰かの助けをいただければ幸いです。
また、Webサーバーの構成についてはあまり詳しくないので、チュートリアルを使用して上記のコードを取得しました。