I am configuring a REST service in nginx. The path is
http://localhost:8000/services/abc/api/portal/transporter?date=2019-07-15T00:00:00
Can some one help to configure the path. I am trying as
location ~ ^/services/abc/api/portal/transporter/[^/]+$ {
proxy_pass http://backendserver;
}
here transporter is a parameter. It is giving 404 error.