0xkaizendev
HOBBYOP
2 years ago
i have a fastapi running with docker which can be reached via the internal network, but public / endpoinf returns Application failed to respond page
9 Replies
2 years ago
you would need to be using uvicorn, please check out this docs page -
https://docs.railway.app/guides/fixing-common-errors
2 years ago
please read the docs page I linked
just tested with the port variable and 0.0.0.0 and it worked but when using ipv6 '::' protocol the Application Error: This application failed to respond is raised had to switch to hypercorn to make both private and public working
2 years ago
yep uvicorn does not support dual stack binding
2 years ago
no problem!