About nginx configuration, forwarding function, what's wrong with it?

Boss, about nginx configuration:

all requests url are: / api/xxx (starting with / api ), and
are forwarded to http:target.com/xxx (remove / api )
(please note that this is not the case: http:target.com/api/xxx )
this logic is implemented.

that"s what I"m doing now

        location ^~ /api {
            proxy_pass  http://target.com;
            proxy_redirect off;
            proxy_set_header HOST $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            client_max_body_size 10m;
            client_body_buffer_size 128k;
            proxy_connect_timeout 90;
            proxy_send_timeout 90;
            proxy_read_timeout 90;
            proxy_buffer_size 4k;
            proxy_buffers 4 32k;
            proxy_busy_buffers_size 64k;
            proxy_temp_file_write_size 64k;
        }

but definitely not. / api also took it. I searched for a long time and didn"t find a solution. no, no, no. Ask the boss for advice ~

Aug.05,2021

add one / at the end


you read this article, a universal nginx configuration description https://codeshelper.com/a/11.


location /api/ {
    proxy_pass  http://target.com/;
}
Menu