On Tue, Jun 18, 2019 at 03:33:32PM +0000, Suleman Butt wrote:

Hi there,

>       location ~ ^/proxy/(.*)$ {
>       proxy_pass http://localhost:3000/$1$is_args$args;

> I just get this in the browser:
> 
> [cid:[email protected]]
> 
> Any suggestion what is wrong in my docker file or nginx.conf?

The picture suggests that you requested the url "/proxy".

The location will only handle urls that start with "/proxy/".

Perhaps add "location = /proxy { return 301 /proxy/; }"

Or perhaps go to the url that ends with the /.

        f
-- 
Francis Daly        [email protected]
_______________________________________________
nginx mailing list
[email protected]
http://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to