2 months ago
blazorapp1-production.up.railway.app it shows 502 error
2 Replies
Status changed to Awaiting Railway Response Railway • 2 months ago
2 months ago
Did you make sure that the port your application is listening to is the same port your URL is mapped to?
Also, check your deployment logs to make sure there aren't any other errors.
2 months ago
Hey, A 502 after a successful deploy usually means the app isn't binding to the port Railway expects. I'd suggest checking how your app listens for incoming connections — Railway assigns the port dynamically via an environment variable, so if your app is hardcoded to a specific port it won't line up. Also worth checking your deployment logs, they usually point you straight to the issue. Hope that helps