clean-printer-85443
03/19/2024, 2:53 PM<https://local.app1>
• <https://local.app2:444>
• <https://local.login.stuff:4431>
• <https://local.login.stuff:4432/admin>
I am able to successfully load the <https://local.login.stuff:4431/.well-known/ory/webauthn.js>
URL, as well as <https://local.login.stuff:4432/admin/identities>
. However, when my React app sends the user to <https://local.login.stuff:4431/oauth2/auth?client_id=>...
, I get a 404 error. I suspect there is simply a mis-configuration on my part somewhere, but a combination of out-of-date docs and my unfamiliarity with Kratos has me at a road block. I know it isn't a DNS or hosts
file problem, since I am able to load all three apps individually at their respective ports. Beyond that, I am at a loss.
Any help would be greatly appreciated!magnificent-energy-493
docker logs <container-name>
command. For example, docker logs ory-hydra-example--hydra
for Ory Hydra. Source
2. Check the configuration of your Ory services: Make sure that the environment variables and other configurations are set correctly. For example, the ORY_SDK_URL
should be set to the correct URL of your Ory project. Source
3. Check the OAuth 2.0 flow: Make sure that the OAuth 2.0 flow is set up correctly. The /oauth2/auth
endpoint is part of the OAuth 2.0 flow, and a 404 error might indicate an issue with the flow. Source
4. Check the UI configuration: If you're using a custom UI, make sure that it's configured correctly to work with Ory. Sourceclean-printer-85443
03/19/2024, 4:29 PM