Dockered nextcloud behind nginx proxy cannot connect android

Hi there,
i managed to install nextcloud docker image on my “home server” okay, it’s just some pi but should be enough for me so far.
Since this is using http, I installed an nginx to use it as proxy. This basically works but connecting via android takes several minutes without effect…
reading the log, the requests are forwared but someting else seems to run wrong.

What i found interesting is that webdav address is http://127.0.0.1:8090/remote.php/dav/files/tecdroid/ and not the web address I enter to connect my nextcloud.

here’s my nginx config… is there anything else i need to configure?

server {
listen 8443 ssl;
listen [::]:8443 ssl;

    ssl_certificate /etc/nginx/ssl/nginx.crt;
ssl_certificate_key /etc/nginx/ssl/nginx.key;

server_name [my webserverurl];

location / {
    proxy_pass http://127.0.0.1:8090;
}

}

Maybe setting your domain in nextcloud/config/config.php would help?

well… this did the job. thank you! :slight_smile: