Pydio with LetsEncrypt companion on docker compose

Hi,
I tried pydio on localhost everything was fine, so i test it also on a VPS over https with this
(i’ve got a LetsEncrypt companion container for nginx-proxy running on the VPS)
ex here PYDIO_URL = sub.domain.com

version: '3.6'

networks:
  external-nginx-proxy:
    external:
      name: nginx-proxy-net

volumes:
    pydio_mysql_socket:

services:

  db:
    image: mysql:5.7
    container_name: pydio-mysql
    restart: always
    environment:
      - "MYSQL_ROOT_PASSWORD={{PYDIO_MYSQL_ROOT_PASSWORD}}"
      - "MYSQL_USER={{PYDIO_MYSQL_USER}}"
      - "MYSQL_PASSWORD={{PYDIO_MYSQL_PASSWORD}}"
      - "MYSQL_DATABASE={{PYDIO_MYSQL_DATABASE}}"
    command: [mysqld, --character-set-server=utf8mb4, --collation-server=utf8mb4_unicode_ci]
    volumes:
      - ./db:/var/lib/mysql
      - pydio_mysql_socket:/var/run/mysqld/
    networks:
      - external-nginx-proxy

  cells:
    image: pydio/cells:1.5.3
    container_name: pydio-cells
    restart: always
    expose:
      - "8888"
    environment:
      - "CELLS_BIND=0.0.0.0:8888"
      - "CELLS_EXTERNAL={{PYDIO_URL}}:8888"
      - "CELLS_NO_SSL=1"

      - "VIRTUAL_HOST={{PYDIO_URL}}"
      - "VIRTUAL_PORT=8888"
      
      - "LETSENCRYPT_HOST={{PYDIO_URL}}"
      - "LETSENCRYPT_EMAIL={{EMAIL}}"

    volumes:
      - ./cells:/root/.config/pydio/cells
      - ./cells/logs:/root/.config/pydio/cells/logs
      - ./cells/data:/root/.config/pydio/cells/data
      - ./cells/services:/root/.config/pydio/cells/services
      - ./cells/static:/root/.config/pydio/cells/static
      - "pydio_mysql_socket:/var/run/mysqld/"
    networks:
      - external-nginx-proxy
    depends_on:
      - db
      - php-fpm

  php-fpm:
    image: pydio/cells-php-fpm:latest
    container_name: pydio-fpm
    restart: always
    volumes:
      - ./cells/static:/root/.config/pydio/cells/static
    expose:
      - "9000"
    networks:
      - external-nginx-proxy

during the install i choose to go over the mysql socket with /var/run/mysqld/mysql.sock

i get stuck on the loading grey page wit hthe logo, so i change http to https here sudo vim cells/pydio.json

 16   "defaults": {
 17     "database": "your_docker_id",
 18     "datasource": "pydiods1",
 19     "url": "http://sub.yourdomain:8888",
 20     "urlInternal": "http://0.0.0.0:8888"
 21   },

to

 16   "defaults": {
 17     "database": "your_docker_id",
 18     "datasource": "pydiods1",
 19     "url": "https://sub.yourdomain",
 20     "urlInternal": "http://0.0.0.0:8888"
 21   },

so i can login but after login i get stuck on the bear wallpaper?

Do i have to tweak or re do something here ?
thanks,

EDIT: i can see a frontend error
“ERROR pydio.rest.frontend cannot init oidc provider”

"

Hello @RobyRemzy,

Could you try the same setup but change your urlInternal for http://domain-name:port the same as used in your url.

Also i could notice that you have php-fpm for cells, php was removed from cells (it is now a 100% go) and therefore you do not require any php-fpm anymore.

hey @zayn, tanks for your reply,
i updated to pydio 1.6.0
removed php fpm
stop using the mysql.socket for a classic connection
and i changed my pydio.json like this

 16   "defaults": {
 17     "database": "your_docker_id",
 18     "datasource": "pydiods1",
 19     "url": "https://sub.yourdomain",
 20     "urlInternal": "https://sub.yourdomain:8888"
 21   },

everything work as expected for the login part and i just get through the welcome page and take a tour.