CentOS Stream 9にnginxのバーチャルホストを設定する方法

環境
CentOS Stream release 9

1.nginxの配置ファイルを設定します
# vi /etc/nginx/conf.d/sample.com.conf

以下の内容を編集します

server {
    listen       80;
    server_name  www.sample.com;

    location / {
        root   /usr/share/nginx/sample.com;
        index  index.html index.htm;
    }
}

2.テストページを作成します
# vi /usr/share/nginx/sample.com/index.html
以下の内容を編集します

<html>
<body>
<div style="width: 100%; font-size: 40px;">
Nginx Test Page
</div>
</body>
</html>

 

CentOS Stream 9

Posted by arkgame