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
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- apple exchange code to token
hello guys, im new here 🙂 I have created a project and enabled apple oauth, filled all data (client id, key id, p8 file itself etc). I generate oauth code form...
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...