>> Can I pass for-apache.html to apache and wait 30m for it?
>
> In nginx, one request is handled in one location. Only the configuration
> in, or inherited into, that location applies.
>
> To send to apache, you need the proxy_pass directive -- which has
> documentation at http://nginx.org/r/proxy_pass
>
> So the answer is "yes you can, but you have to configure it".

Got it, thank you.

location /for-apache.html {
        proxy_read_timeout 30m;
        proxy_pass http://127.0.0.1:8080;
}

- Grant

_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to