
Im running my appwrite instance locally for development purpuses, and whenever I do a request (e.g. creating an account) I get 404. Why is that?
` client = Client() .setEndpoint("https://172.20.163.38:80/v1") <-- local ip of my WSL2 .setProject("12345...") .setSelfSigned(status: true);
var account = Account(client);
account.create( userId: ID.unique(), email: "abc@mail.de", password: "fake_password", );`
Im running appwrite inside WSL2, might that cause problems?

Take out the :80
port and try again

but you should be able to point 'https://127.0.0.1/v1` if you've opened the 80 port

Taking out the port worked!

[Solved] 404 in flutter
Recommended threads
- Document Data is null.
I'm using flutter and I've just got everything set up, the document meta data is null but the actual query is fine. (see screenshot) The permission I have ar...
- Flutter native Google Sign Up with googl...
Hey I want to use the native login instead of the WebView. Do you have any experience on that and has Appwrite to plan this support?
- cli 5.0.5 command for pull and push of d...
Hi i am using selfhosted appwrite 1.5.10, for migration (duplicate project) purpose i am using cli 5.0.5, but i am unable to find commands for pull and push, wh...
