Apache2 : バーチャルホストの設定2019/01/25 |
バーチャルホストを設定し、複数のドメイン名を利用できるようにします。
例として、バーチャルホストで運用するドメイン名 [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> systemctl restart apache2 |
[2] | テストページを作成して動作確認をします。クライアントPC で Web ブラウザを起動し、以下のように作成したテストページにアクセスできれば 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> |
Sponsored Link |
|