NGINX Gateway Throws HTTP Error426
I have deployed an NGINX gateway with Docker, but I keep getting error 426 when I hit either of the /endpoints exposed by the various services that I am proxy serving..
projectId: 3bde7302-bd56-46e5-aca5-916ef25a61bd
3 Replies
Project ID:
3bde7302-bd56-46e5-aca5-916ef25a61bd
You might find these helpful:
- Express JS Server deployed and running but when I try to hit endpoint then I am getting 503 error.
- Server Error 503 after successful docker build
- Why can't I reach ASP.NET Core 7 endpoint?
⚠️ experimental feature
I figured it out...
I had to include
proxy_http_version 1.1;
on my config...
/abc {
proxy_pass https;/xyx.up.railway.app;
proxy_http_version 1.1;
}