次のように nginx 構成を設定しようとしています: 次のようなリクエストを受信した場合/tile/SteveCountryVic/1/2/3.png
:
- それを通過させようとする
http://localhost:5005/1/2/3.png
- 404の場合は、別のサーバーに渡します。
/tile/SteveCountryVic/1/2/3.png
うまく機能していない私の設定は次のとおりです:
server {
listen 80;
server_name localhost; error_log /tmp/nginx.error.log notice;
access_log /tmp/nginx.access.log;
location /tile/SteveCountryVic/ {
rewrite_log on;
#rewrite ^.*/(\d+)/(\d+)/(\d+).*$ /$1/$2/$3.png break;
proxy_intercept_errors on;
error_page 404 = @dynamiccycletour;
#proxy_set_header Host $http_host;
#proxy_pass http://127.0.0.1:5005;
proxy_redirect /tile/SteveCountryVic/ http://localhost:5005/;
location @dynamiccycletour {
rewrite_log on;
#rewrite ^(\d+)/(\d+)/(\d+).*$ /tile/SteveCountryVic/$1/$2/$3.png break;
proxy_pass http://115.x.x.x:20008;
}
location /tile/ {
proxy_set_header Host $http_host;
proxy_pass http://127.0.0.1:20008;
proxy_cache my-cache;
proxy_cache_valid 200 302 60m;
proxy_cache_valid 404 1m;
}
...
この構成では、すべてのリクエストがプロキシ サーバーにリダイレクトされるように見えますが、最終的には画像が提供されます。さらに、エラー ログには次の行が含まれます。
2013/09/10 09:44:11 [error] 564#0: *138 open() "/etc/nginx/html/tile/SteveCountryVic/13/7399/5027.png" failed (2: No such file or directory), client: 118.x.x.x, server: localhost, request: "GET /tile/SteveCountryVic/13/7399/5027.png?updated=15 HTTP/1.1", host: "mydomain.org"
を使用する代わりに、と をproxy_redirect
使用します。rewrite
proxy_pass
rewrite ^.*/(\d+)/(\d+)/(\d+).*$ /$1/$2/$3.png break;
proxy_pass http://127.0.0.1:5005;
すると、ブラウザに 404 メッセージが実際に表示されるようになりました (つまり、傍受されません)。
私の質問:
- 何が間違っているのでしょうか?
- いったいなぜ nginx は /etc/nginx/html/... 内のファイルを探しているのでしょうか?
- さらに多くのログ情報を取得する方法はありますか (具体的には、proxy_redirect をよりよく理解するため)?
答え1
代替バージョンでは、 を使用しrewrite
、proxy_pass
完璧に動作しました。問題は、他のサーバーが 404 ではなく 200 を返すことでした。完全を期すために、動作構成を以下に示します。
server {
listen 80;
server_name localhost;
error_log /tmp/nginx.error.log notice;
access_log /tmp/nginx.access.log;
location /tile/SteveCountryVic/ {
rewrite_log on;
rewrite ^.*/(\d+)/(\d+)/(\d+.*)$ /$1/$2/$3 break;
proxy_intercept_errors on;
error_page 404 = @dynamiccycletour;
proxy_set_header Host $http_host;
proxy_pass http://127.0.0.1:5005;
}
location @dynamiccycletour {
rewrite_log on;
rewrite ^/(\d+)/(\d+)/(\d+.*)$ /tile/SteveCountryVic/$1/$2/$3 break;
proxy_pass http://115.x.x.x:20008;
}
答え2
まず、root
- ディレクティブを正しく設定していません -> そのため 404 が返されます -> そのため、すべてのリクエストが @dynamiccycletour (openstreetmap?) にリダイレクトされます
ところで、 /tile/ と /tile/SteveCountryVic/ の違いは何ですか?
そのため、まずここで少しクリーンアップする必要があります。
server {
....
# define where to find files
# be sure to have it like /path/to/tile
root /path/to/tiles/;
location /tile/SteveCountryVic/ {
# if file not found -> remote server
try_files $uri @dynamiccycletour
rewrite_log on;
# this should cover /1/2/3.png. no?
rewrite /tile/SteveCountryVic/(.*).png$ /$1.png break;
# i'm not sure this will match due the the rewrite
proxy_redirect /tile/SteveCountryVic/ http://localhost:5005/;
location @dynamiccycletour {
rewrite_log on;
# this should cover /1/2/3.png. no?
rewrite /tile/SteveCountryVic/(.*).png$ /$1.png break;
proxy_pass http://115.x.x.x:20008;
}
}