Rank 2: Process
If you’ve just added a subdomain to your project, verified your DNS records, and confirmed your SSL certificate is working, but you're still hitting a general_route_not_found error, here is the fix:
Let's take Google OAuth as an example, Appwrite provides a default URI like this:
https://fra.cloud.appwrite.io/v1/account/sessions/oauth2/callback/google/...
Since you've switched to a custom subdomain, the default endpoint will no longer work. You need to replace fra.cloud.appwrite.io with your own subdomain. Your updated URI should look like this:
https://api.yourdomain.com/v1/account/sessions/oauth2/callback/google/...
Make sure to update these URIs in your respective OAuth provider's configuration settings.