SLES 12
Sponsored Link

バーチャルホストの設定2015/11/28

 
バーチャルホストを設定し、複数のドメイン名を利用できるようにします。
例として、バーチャルホストで運用するドメイン名「virtual.host」を、一般ユーザー「suse」のホームディレクトリ領域 (/home/suse/public_html) に割り当ててアクセスできるようにします。 例のようにユーザー領域を利用する場合は事前に Userdir の設定も必要です
[1] バーチャルホストを設定します。
www:~ #
vi /etc/apache2/vhosts.d/defalt.site.conf
# デフォルトサイト用設定ファイル新規作成

<VirtualHost *:80>
    DocumentRoot /srv/www/htdocs
    ServerName www.srv.world
</VirtualHost>

www:~ #
vi /etc/apache2/vhosts.d/virtual.host.conf
# virtual.host用設定ファイル新規作成

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

www:~ #
systemctl restart apache2

[2] テストページを作成して動作確認をします。以下のようなページが表示されればOKです。
suse@www:~>
vi public_html/virtual.php
<html>
<body>
<div style="width: 100%; font-size: 40px; font-weight: bold; text-align:center;">
Virtual Host Test Page<br />
</div>
</body>
</html>
関連コンテンツ