1. Windows に nginx をインストールするためのディレクトリ構造は次のとおりです:
2. nginx-1.12.1 ディレクトリの conf/nginx.conf の内容
#user nobody; worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80 default_server; server_name localhost default_server; root html; location / { index index.html index.htm; } } include ../vhost/*.conf; }
3. vhost ディレクトリの下の a_com.conf の内容:
server { listen 80; server_name www.a.com; root d:/test/; location / { index index.html index.htm; } }
4. vhost ディレクトリの下の b_com.conf の内容:
server { listen 80; server_name www.b.com; root d:/test2/; location / { index index.html index.htm; } }
5. 新しいテストを作成し、ローカル ディスクの d ディスクの下に test2 ディレクトリを作成し、新しい Index.html ファイルを作成します。
6. ローカル ディスク C ドライブの c:\windows\system32\drivers\etc の下にあるホストを次のように変更します
127.0.0.1 www.a.com 127.0.0.1 www.b.com
7. cmd を使用して nginx インストール ディレクトリに移動します。
nginx.exe を実行します。 Start
nginx -t //構文を検出します。
nginx -s reload / /Restart
nginx -s stop // Stop
8. ブラウザを開いて URL
を入力します。以上がWindows で Nginx の複数のドメイン名を構成する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。