Nginx : バーチャルホストの設定2024/05/31 |
Nginx のバーチャルホストの設定です。 |
|
[1] | Nginx の設定です。 |
root@www:~#
vi /etc/nginx/sites-available/virtual.host.conf # 新規作成 server { listen 80; server_name www.virtual.host; location / { root /var/www/virtual.host; index index.html index.htm; } } mkdir /var/www/virtual.host root@www:~# cd /etc/nginx/sites-enabled root@www:/etc/nginx/sites-enabled# ln -s /etc/nginx/sites-available/virtual.host.conf ./ root@www:/etc/nginx/sites-enabled# systemctl reload nginx |
[2] | テストページを作成して動作確認します。作成したテストページに Web アクセスして、ページが表示されれば OK です。 |
root@www:~#
vi /var/www/virtual.host/index.html <html> <body> <p style="width: 100%; font-size: 40px; font-weight: bold; text-align: center;"> Nginx Virtual Host Test Page </p> </body> </html> |
Sponsored Link |