nginx sirve ubicación alternativa en 404

nginx sirve ubicación alternativa en 404

Estoy intentando configurar una configuración de nginx de la siguiente manera: Cuando recibo una solicitud como /tile/SteveCountryVic/1/2/3.png:

  1. Intente pasarlo ahttp://localhost:5005/1/2/3.png
  2. Si es 404, páselo a otro servidor como/tile/SteveCountryVic/1/2/3.png

Aquí está mi configuración que no funciona del todo:

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;
    }
    ...

En esta configuración, todas las solicitudes parecen redirigirse al servidor proxy, pero finalmente se sirven las imágenes. Además, el registro de errores contiene estas líneas:

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"

Si en lugar de usar proxy_redirect, uso rewritey proxy_pass:

        rewrite ^.*/(\d+)/(\d+)/(\d+).*$ /$1/$2/$3.png break;
        proxy_pass http://127.0.0.1:5005;

Entonces ahora veo los mensajes 404 en el navegador (es decir, no son interceptados).

Mis preguntas:

  1. ¿Qué estoy haciendo mal?
  2. ¿Por qué diablos nginx busca archivos en /etc/nginx/html/...?
  3. ¿Existe alguna manera de obtener aún más información de registro (específicamente, para comprender mejor proxy_redirect)?

Respuesta1

La versión alternativa se usó rewritey proxy_passse comportó perfectamente; el problema fue que el otro servidor devolvió 200 en lugar de 404. Entonces, para completar, aquí está la configuración de trabajo:

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;

   }

Respuesta2

Lo primero que no has configurado rootcorrectamente es tu directiva -> es por eso que obtienes un 404 -> es por eso que todas las solicitudes se redirigen a tu @dynamiccycletour (¿openstreetmap?)

Por cierto, ¿cuál es la diferencia entre /tile/ y /tile/SteveCountryVic/?

Así que primero necesitamos un poco de limpieza aquí:

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;


   }

 }

información relacionada