Closed budimanjojo closed 5 years ago
Just an update to my problem. I managed to find the root cause of this. This is because of the way docker compose works with network. In my compose file, I specified the app to be on traefik and db network, but I didn't include default network which should be the default network all the services are in. So, the app and redis service is not on the same network resulting in "Internal Server Error". I always thought it was the database, never thought that not connecting to redis will cause this. So my fix is simply add default to the network for the nextcloud service like this:
networks:
- traefik
- db
- default
I think I can close this issue now.
I tried everything for nearly 10 hours already. Seems like something is broken and I don't know what :cry: This is what I did:
docker network create db
And here's my config.env file (credentials and domain is not shown off course):
Thank you