FreeBSD 14
Sponsored Link

Nginx : バーチャルホストの設定2024/02/13

 
Nginx のバーチャルホストの設定です。
例として、デフォルトドメインに加えて、新たに [virtual.host] ドメインを設定します。
[1] Nginx の設定です。
root@www:~ #
vi /usr/local/etc/nginx/nginx.conf
http {
.....
.....
    # [http] セクション内に追記
    server {
        listen       80;
        server_name  www.virtual.host;

        location / {
            root   /usr/local/www/virtual.host;
            index  index.html index.htm;
        }
    }
}

root@www:~ #
mkdir /usr/local/www/virtual.host

root@www:~ #
service nginx reload

[2] テストページを作成して動作確認します。作成したテストページに Web アクセスして、ページが表示されれば OK です。
root@www:~ #
vi /usr/local/www/virtual.host/index.html
<html>
<body>
<div style="width: 100%; font-size: 40px; font-weight: bold; text-align: center;">
Nginx Virtual Host Test Page
</div>
</body>
</html>
関連コンテンツ