Infinite scale blank page after backup

Steps to reproduce

  1. installed ocis on docker behind caddy reverse proxy
  2. ran docker stop ocis
  3. backup ocis folder with restic to nas
  4. ran 1docker start ocis

Expected behaviour

run my istance just fine

Actual behaviour

I get no error in logs but client gives a 502 and the browser is outputting only a white page

Server configuration

Operating system:
running on docker

Web server:

Database:

PHP version:

ownCloud version: (see ownCloud admin page)
latest docker image

Updated from an older ownCloud or fresh install:

Where did you install ownCloud from:

The content of config/config.php:

Are you using external storage, if yes which one: local/smb/sftp/…
No
Are you using encryption: yes/no
No
Are you using an external user-backend, if yes which one: LDAP/ActiveDirectory/Webdav/…
No

container

services:

  ocis:
    container_name: ocis2
    image: owncloud/ocis
    volumes:
      - /mnt/ssd/ocis/data:/var/lib/ocis
      - /mnt/ssd/ocis/config:/etc/ocis
    environment:
      - PROXY_HTTP_ADDR=0.0.0.0:9200
      - OCIS_INSECURE=true
      - PROXY_TLS=false 
      - OCIS_URL=https://ocis.mydomain.com

    restart: unless-stopped
    networks:
      - proxy_inet

networks:
  proxy_inet:
    external: true
    name: proxy_inet

Client configuration

Browser:
Firefox or Edge on macos and or android
Operating system:
macOS

Logs

docker container

2024-09-24T07:07:58Z ERR parsing error, the 'smtp_sender' must be a valid single RFC 5322 address. | service=notifications error=mail: no address 

You are starting the notifications service. Do you need it? It’s responsible for sending emails.

If you need it: set the NOTIFICATIONS_SMTP_SENDER envvar otherwise it will not start.

If you don’t need it: check if you have set OCIS_ADD_RUN_SERVICES somewhere. It shouldn’t start by default, so there is some configuration that starts it.

I was just told that the smtp_sender error is just a redundant log in ocis 5.x versions. It will be gone it 6.x release.

Are there any other logs in the server that explain the issue? A 502 is usually a sign that some service crashed.

Now everything looks good it was related to the reverse proxy certificate (Caddy), still have that error on SMTP, how can I disable it? I did not customize any configuration besides what you see in ENV
Also when will 6.x be released for in docker hub?

Thank you for your help

still have that error on SMTP, how can I disable it?

Just don’t start notifications service. Use envvar OCIS_EXCLUDE_RUN_SERVICES=notifications

Also when will 6.x be released for in docker hub?

Rolling is released all 3 weeks. New production update coming soonish. (Dont have a date)