
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
- 404 for self-host
docker-compose.yml: x-logging: &x-logging logging: driver: 'json-file' options: max-file: '5' max-size: '10m' services: traefik: ima...
- Is p-limit compatible with Appwrite?
I have a function that makes asynchronous calls to different Appwrite collections. This is how I make the call: ```js await Promise.allSettled([ ...
- Realtime stuck on pending
I'm hosting appwrite on a server where there's already nginx running and you can see how it's config looks for appwrite on attachted screenshot. I'm not getting...
