kutt
kutt copied to clipboard
sitename isn't reflected in UI
still says "Kutt" everywhere.
- Which version are you using?
- Are you using Docker?
- Where exactly do you see Kutt? The text for logo?
I had a similar issue and just now found the solution.
I am hosting everything with docker-compose files and was using
env_file:
- production.env
This loaded most of the settings into the global environment.
Though it would still not show the Name, URL or Email.
Now I tried adding
volumes:
- ./production.env:/usr/src/app/.env:ro
And after a container recreation with docker-compose up -d it fully works now.
So this seems to be an issue that some settings are not being pulled from the global environment but only from the .env file in the application root.