web-dev-qa-db-ja.com

nginxプロキシの書き換えが一致しません

Proxy_passを使用してリクエストを複数のバックエンドサービスに転送するようにNginxを設定しています

それらのいくつかは、フォルダを削除するために書き換えルールを追加する必要がありますが、この特定のサービスでは、書き換えルールはスタイル/画像に対して機能しません。任意のヒント?

~$ tail /var/log/nginx/error.log
2012/02/09 10:57:19 [error] 4103#0: *10 open() "/var/www/images/blank.gif" failed (2: No such file or directory), client: 203.xxx.xxx.xxx, server: example.net, request: "GET /images/blank.gif HTTP/1.1", Host: "example.net", referrer: "https://example.net/hp/"

~$ cat /etc/nginx/proxy-control.conf; 
proxy_connect_timeout   59s;
proxy_send_timeout      600;
proxy_read_timeout      600;
proxy_buffer_size       64k;
proxy_buffers           16 32k;
proxy_pass_header       Set-Cookie;
proxy_hide_header       Vary;

proxy_busy_buffers_size         64k;
proxy_temp_file_write_size      64k;

proxy_set_header        Accept-Encoding         '';
proxy_ignore_headers    Cache-Control           Expires;
proxy_set_header        Referer                 $http_referer;
proxy_set_header        Host                    $Host;
proxy_set_header        Cookie                  $http_cookie;
proxy_set_header        X-Real-IP               $remote_addr;
proxy_set_header        X-Forwarded-Host        $Host;
proxy_set_header        X-Forwarded-Server      $Host;
proxy_set_header        X-Forwarded-For         $proxy_add_x_forwarded_for;

proxy_set_header        X-Forwarded-Ssl         on;
proxy_set_header        Authorization           '';

proxy_redirect         http://example.net/ /;
proxy_redirect         https://example.net/ /;


~$ tail /etc/nginx/services.conf;
location /hp {
    rewrite           ^/hp$          https://example.net/hp/           permanent;                                                       $
    rewrite           /hp/(.*)      /$1                             break;

    proxy_pass        http://192.168.1.2/;
    include           proxy-control.conf;
    include           auth-basic.conf;
}

クロームエラー;

https://example.net/images/blank.gif Failed to load resource: the server responded with a status of 404 (Not Found)
https://example.net/images/final-hp-login_1x11.gif Failed to load resource: the server responded with a status of 404 (Not Found)
2
Thermionix

設定が間違っていると思います。 https://example.net/images/blank.gifへのリクエストがある場合、http://192.168.1.2/images/blank.gifに送信され、404があります。もちろん、このリクエストは/ hpで始まっていないため、2つの書き換えは一致しません。たぶんproxy_pass http://192.168.1.2/hpが欲しいですか?

1
jcisio