What version of Appwrite are you on and was it a clean install or did you upgrade?
Here's this as well. It was showing unknown before, but now it's Traefik's default cert.
Fresh install today using 1.4.3
This is the default that Appwrite/traefik uses
It should be giving it a letsencrypt cert though, right?
Can you try a domain that isn't as deeply nested?
This also sounds really weird especially if the certificate status is generated 🧐
My thoughts exactly. It doesn't take time doing the generating either. It's instantanious.
Trying another domain
Same thing with another domain. Tried both with A records as well as a CNAME pointing to my main domain.
Hmm okay. I'll have to try and reproduce this tomorrow
Thanks. Let me know if there's anything else I can do to help
Checked the logs for the certificate service container again and there's nothing
this first entry...that was the default one created after you created your function wasn't it?
so i just tested creating a custom domain and it seemed to work fine for me 🧐
how did you install appwrite? did you have a installation previously? what's the output of docker inspect appwrite_appwrite-mariadb?
Yes it was
I installed the standard way listed on the website. Here's the output:
root@appwrite:~# docker inspect appwrite_appwrite-mariadb
[
{
"CreatedAt": "2023-09-25T23:00:47Z",
"Driver": "local",
"Labels": {
"com.docker.compose.project": "appwrite",
"com.docker.compose.version": "2.20.2",
"com.docker.compose.volume": "appwrite-mariadb"
},
"Mountpoint": "/var/lib/docker/volumes/appwrite_appwrite-mariadb/_data",
"Name": "appwrite_appwrite-mariadb",
"Options": null,
"Scope": "local"
}
]
ok looks like the ceritifcate status will be generated if verification status is verified...
can you:
- open browser dev tools
- switch to network tab so you can look for the network logs
- filter the list for fetc/xhr requets that incldue
rules - clear the results
- refresh the page
- check the results of the last request and look for the logs param
The "logs" param is empty
Tried doing "Retry Verification" as well
This is all that happens
let me double check with the team about this.
Recommended threads
- is `account.get()` safe to be used in th...
I want to user's `id` for authentication. However, a while ago I was told in this server not to use `account.get()` and instead add user preferences for that us...
- Usage of the new Client() and dealing wi...
Hey guys, just a quick one - we had some web traffic the other day and it ended up bombing out - To put in perspective of how the app works, we have a Nuxt Ap...
- CORS errors in Obsidian custom plugin
Hi, anyone here familiar with obsidian community plugins? In short: it's a local first note app which supports writing your own add-ons / plugin But I keep get...