nginx + IIS + GET
- by Eralde
I have nginx on pc "A" & IIS with ASP.NET on pc "B".
nginx is configured like this:
...
location ~ ((Web|Script)Resource.*)$ {
proxy_pass "B"/$1;
proxy_redirect off;
proxy_set_header REMOTE_ADDR $remote_addr;
proxy_set_header REQUEST_URI $request_uri;
proxy_set_header HTTP_REFERER…