nginx は次の部分で構成されます
gulimaill.com のすべてのリクエストをプロキシします。
このメソッドを使用してゲートウェイをプロキシできます
http { upstream myapp1 { server srv1.example.com; server srv2.example.com; server srv3.example.com; } server { listen 80; location / { proxy_pass http://myapp1; } }
upstream gulimall { server 192.168.1.7:10001; } location / { proxy_set_header Host $host; # proxy_pass http://192.168.1.7:10000; proxy_pass http://gulimall; }
URL が ***.gulimaill の場合、.com の場合、製品サービスにジャンプします
##nginx は Host リクエスト ヘッダーを運ばないため、ここに落とし穴があります。したがって、proxy_set_header Host $host;configuration
を追加する必要があります。以上がnginxリバースプロキシをどうするかの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。