Wrong server address

I’m quite puzzled, as I cannot find anything on my problem.

The problem (https://imgur.com/a/7LIGnxP):
Users can’t login to apps like Android or iOS, because the server-address is wrong. This also shows in the configuration, but I cannot find a way to change it. Login with app-password works fine.

I use docker-compose for the server (18.0.1)

version: '2'
volumes:
  nextcloud:
  db:

services:
  db:
    image: mariadb
    command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
    restart: always
    volumes:
      - db:/var/lib/mysql
    environment:
      - MYSQL_ROOT_PASSWORD=
      - MYSQL_PASSWORD=
      - MYSQL_DATABASE=
      - MYSQL_USER=

  app:
    image: nextcloud
    ports:
      - 10443:80
    links:
      - db
    volumes:
      - nextcloud:/var/www/html
      - data:/var/www/html/data
    restart: always

Does someone know an option on how to change that server-address?

I had problems that remind me of yours just now (but they were with the linux and windows desktop clients) and fixed them after reading this post:

Maybe that works for you as well?

1 Like

This is exactly what I needed! How did I not find this…

Thanks a lot

1 Like