-
|
Hi, I'm just trying our Opencloud but cannot go beyond the login screen with this error: my compose looks like this services:
opencloud:
image: opencloudeu/opencloud-rolling
container_name: opencloud
hostname: "opencloud.redacted.de"
entrypoint:
- /bin/sh
command: ["-c", "opencloud init --insecure true || true; opencloud server"]
restart: always
user: "1000"
networks:
nginx-net:
volumes:
- ./opencloud/data:/var/lib/opencloud
- ./opencloud/config:/etc/opencloud
env_file:
- path: ./opencloud.env
required: trueand the env file like this seeing the error i suspect that opencloud tries to use the thanks and best regards |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
So if your nginx proxies from 443 to 9200 you can leave the port empty. In your case it seems that openCloud cannot connect to itself via the Public url. That would break openidConnect authentication. |
Beta Was this translation helpful? Give feedback.
OC_URLis always the publicly reachable url.So if your nginx proxies from 443 to 9200 you can leave the port empty.
In your case it seems that openCloud cannot connect to itself via the Public url. That would break openidConnect authentication.