#Workspace not found for multi workspace
1 messages · Page 1 of 1 (latest)
Anyone having the same problem?
When testing locally it does have the same workspace not found error, but the one on the vps just keeps refreshing the page every second.
Are you running Twenty behind a proxy?
[help me please]
Even adjusting .env didn't work.
What is the .env path to activate multi-workspace? Is there a specific folder? Or is it in the application root?
I use cloudflare, and I had created a wildcard domain. Is this really necessary?
Will I have to adjust nginx? If so, does anyone have an example of what it would look like?
You need to update your .env file
what is the .env path to enable multi workspace? twenty/packages/twenty-server
/.env
on the panel, it is not editable, is this normal? Is it possible to activate it via the panel so that I don't need to manipulate .env on the server?
Yes, I adjusted the .env file in the project root. I'm using Docker. Are there other folders with .env files that I can edit?
It's not editable on the panel. Is this normal? Is it possible to activate it via the panel so that I don't have to manipulate .env on the server?
Please update your one click install .env file ( sibling to your docker-compose.yml )
And restart your containers
It's not editable on the panel. Is this normal?
Yes that's an, few next weeks, upcoming feature
Forgive my ignorance, I'm still learning.
Would that be it, directly in docker-compose.yml?
That's all right
You should edit the .env file next to your docker-compose.yml
Then restart or even re-create your container, using docker GUI or docker-compose down && docker-compose up
I did it as you said, but it still hasn't activated... :((
Sorry for the delay @naive sand !
You also need to bind the docker-compose entry to be consuming the .env entry
Such as
environment:
PG_DATABASE_URL: postgres://${PG_DATABASE_USER:-postgres}:${PG_DATABASE_PASSWORD:-postgres}@${PG_DATABASE_HOST:-db}:${PG_DATABASE_PORT:-5432}/default
SERVER_URL: ${SERVER_URL}
REDIS_URL: ${REDIS_URL:-redis://redis:6379}
DISABLE_DB_MIGRATIONS: "true" # it already runs on the server
STORAGE_TYPE: ${STORAGE_TYPE}
STORAGE_S3_REGION: ${STORAGE_S3_REGION}
STORAGE_S3_NAME: ${STORAGE_S3_NAME}
STORAGE_S3_ENDPOINT: ${STORAGE_S3_ENDPOINT}
APP_SECRET: ${APP_SECRET:-replace_me_with_a_random_string}
IS_MULTIWORKSPACE_ENABLED: ${IS_MULTIWORKSPACE_ENABLED}
Is this solved yet?
Hello @urban star
Have you tried any of the above suggestions ?
Hi, actually I've already solved all the issues I had before in this post
Mhm nevermind I think @naive sand kinda hijacked this issue
Easiest way is to put 'IS_MULTIWORKSPACE_ENABLED: true` in docker-compose , under server and worker environment
I think this will work too
done, but it didn't work.