1
下面是我想要做的靜態配置。Nginx的動態代理配置
server {
listen 80;
server_name browser.shows.this.server.com;
location/{
proxy_set_header Host backend.server.com;
proxy_redirect http://backend.server.com/ http://browser.shows.this.server.com/;
}
}
我怎樣才能讓backend.server.com
動態爲每個請求?我想在請求中以某種方式通過域名。也許在頭上?