
I want to ask if the subsubdomains in functions do need to be added to dns, as i have 404 on each of the subsubdomains e.g. the automaticly generated subdomain http://65c5452eef6e40ec629c.appwrite.bash.lv/ would return DNS_PROBE_FINISHED_NXDOMAIN for me.

i have only routed https://appwrite.bash.lv A record, should i be adding something else ?

Function subsubdomains, DNS PROBE

For wildcard function domains to work, you need 2 more records:
functions.appwrite.bash.lv
and*.functions.appwrite.bash.lv
. Both should have same configuration as yourappwrite.bash.lv
If you need wildcard certificates to work, thats a bit more tricky as you would need to setup Traefik to do DNS challenge with your provider.
What I would recommend for self-hosted is to manually generate ssl certificate for your custom domains. This only needs to be done once for every domai, and it will keep renewing automatically. The command is docker compose exec appwrite ssl --domain="yourdomainhere.com"
Recommended threads
- Decentralisation
I had queries regarding decentralisation with self hosting, particularly with sites as a recent addition. Can we decentralise sites as in many cases we would li...
- Unable to read session cookie
Hi, when I am hitting Appwrite **/account** API. I am getting the user account details as expected in the response. However, with that API, Appwrite also adds a...
- Database error
My code: await databases.createDocument( process.env.APPWRITE_DATABASE, process.env.APPWRITE_COLLECTION_USER, data.userId, ...
