I'm new in appwrite and, after deploying Docker image : docker run -it --rm --volume /var/run/docker.sock:/var/run/docker.sock --volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw --entrypoint="install" appwrite/appwrite:1.4.11
I can't create any account in Sign up page.
Where can I enter the number of authorised accounts?
Thanks !
You may have had an older instance 🧐 you can enable additional registrations by updating the console root environment variable: https://appwrite.io/docs/advanced/self-hosting/environment-variables#general
Hi, thanks for your answer. What variable are we talking about? I've seen this list, but I can't see how to give it a new number of authorised accounts.
_APP_CONSOLE_WHITELIST_ROOT
I try this command but it still doesn't work:
docker run -it --rm --volume /var/run/docker.sock:/var/run/docker.sock --volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw -e _APP_CONSOLE_WHITELIST_ROOT=enabled --entrypoint="install" appwrite/appwrite:1.4.11
No please read the top of the page...
Yes, the .env in the directory appwrite is : _APP_CONSOLE_WHITELIST_ROOT=enabled
i make another docker compose up -d
biut still with the same error
From the docs:
When enabled only 1 user will be able to use the registration form.
Yes i see, but still with the same error
You have to disable it......
it was disabled before :x Still in error when disabled
And you ran docker compose up -d
after changing it to disabled?
yes
What's the output of docker compose exec appwrite vars | grep WHITELIST_ROOT
?
Hi, the problem only occur in my macbook m2, i reinstall all in a windows and install works. WHITELIST_ROOT was disabled, but i notice one image is not functionnal (21/22). For now i try appwrite on windows. Thanks for help
Recommended threads
- Having issues with login via CLI
``` ~/appwrite appwrite login --endpoint https://localhost/v1 --verbose ? Enter your email myvalidemai...
- Send Email Verification With REST
I am using REST to create a user on the server side after receiving form data from the client. After the account is successfully created i wanted to send the v...
- Use different email hosts for different ...
Hello, I have 2 projects and i want to be able to set up email templates in the projects. Both projects will have different email host configurations. I see ...