具體步驟如下:
1.配置站點1。
2.配置站點2。
3.配置反向代理伺服器站點。
總結,這是一個最簡單的模型,當然了站點1 或者站點2 可以是與反向代理在一個機器上(域名可以都是localhost的不同埠),也可以是在同一個內網的不同機器上。
具體步驟如下:
1.配置站點1。
server { listen 80; #埠號 server_name 127.0.0.1; #站點域名 root /var/www/html; #站點根目錄 index index.html index.htm index.php; }2.配置站點2。
server { listen 80; #埠號 server_name 127.0.0.2; #站點域名 root /var/www/html; #站點根目錄 index index.html index.htm index.php; }3.配置反向代理伺服器站點。
server { listen 80; #埠號 server_name 111.111.111.11; #站點域名 location / { #關鍵配置,請求轉發到站點1 proxy_pass http://127.0.0.1; } location /api { #關鍵配置,請求轉發到站點2 proxy_pass http://127.0.0.2; } }總結,這是一個最簡單的模型,當然了站點1 或者站點2 可以是與反向代理在一個機器上(域名可以都是localhost的不同埠),也可以是在同一個內網的不同機器上。