Ubuntu 17.04
Sponsored Link

バーチャルホストの設定2017/04/26

 
バーチャルホストを設定し、複数のドメイン名を利用できるようにします。
例として、バーチャルホストで運用するドメイン名 [virtual.host] を、一般ユーザー [ubuntu] のホームディレクトリ領域 (/home/ubuntu/public_html) に割り当ててアクセスできるように設定します。
[1] Apache2 の設定です。
root@www:~#
vi /etc/apache2/sites-available/virtual.host.conf
# virtual.host用設定ファイル新規作成

<VirtualHost *:80>
    ServerName www.virtual.host
    ServerAdmin webmaster@virtual.host
    DocumentRoot /home/ubuntu/public_html
    ErrorLog /var/log/apache2/virtual.host.error.log
    CustomLog /var/log/apache2/virtual.host.access.log combined
    LogLevel warn
</VirtualHost>

root@www:~#
a2ensite virtual.host

Enabling site virtual.host.
To activate the new configuration, you need to run:
  service apache2 reload

root@www:~#
systemctl restart apache2

[2] 設定したユーザーでテストページを作成し、動作確認をします。以下のようなページが表示されればOKです。
ubuntu@www:~$
mkdir ~/public_html

ubuntu@www:~$
vi ~/public_html/index.html
<html>
<body>
<div style="width: 100%; font-size: 40px; font-weight: bold; text-align: center;">
Virtual Host Test Page
</div>
</body>
</html>
関連コンテンツ