Review: docker-compose nextcloud internal storage with mariadb, redis and nginx-proxy

Hello,

first I use docker Nextcloudpi and was very satisfied. Then I bougth a QNAP nas and moved over to Nextcloud docker with smb extensions and nginx-proxy. But I have some serious trouble with files bigger than 512 MB and can not use nginx-proxy. I tried it without nginx-proxy but I had the same problems. Then I used internal storage function to disable smb feature.

I tried many things but now I want to talk with you about it before I try again and again. I read many documentation, e.g. docker/docker-compose.yml at master · nextcloud/docker · GitHub
Please can you review my docker-compose and tell me if this base is a good beginning.

docker-compose.yml
version: '3'

services:
  db:
    image: mariadb:10.8.3
    command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW --skip-innodb-read-only-compressed
    environment:
      - MYSQL_ALLOW_EMPTY_PASSWORD=false
    env_file:
      - db.env # store MYSQL_DATABASE, MYSQL_ROOT_PASSWORD, MYSQL_USER, MYSQL_PASSWORD there
    volumes:
      - database:/var/lib/mysql
    restart: always

  app:
    image: nextcloud:24.0.2
    environment:
      - MYSQL_HOST=db
      - REDIS_HOST=redis
      - VIRTUAL_HOST=nas.fritz.box # set server name
      - NEXTCLOUD_TRUSTED_DOMAINS=nas.fritz.box:5080 nas.fritz.box:5443
      - PHP_MEMORY_LIMIT=2G
      - PHP_UPLOAD_LIMIT=8G
    env_file:
      - db.env  # store MYSQL_DATABASE, MYSQL_ROOT_PASSWORD, MYSQL_USER, MYSQL_PASSWORD there
    volumes:
      - ./nextcloud:/var/www/html
      - ~/../share/NAS/dir1:/dir1
      - ~/../share/NAS/dir2:/dir2
      - ~/../share/NAS/dir3:/dir3
      - ~/../share/NAS/dir4:/dir4
    depends_on:
      - db
      - redis

  proxy:
    build: ./proxy
    volumes:
      # dont do that. an attacker can use the socket to pwn you.
      # this is an security issue but you have to do that, if you want a reversed proxy.
      - /var/run/docker.sock:/tmp/docker.sock:ro
      - ./certs:/etc/nginx/certs:ro
      - ./html:/usr/share/nginx/html
      - ./vhost.d:/etc/nginx/vhost.d:ro
    ports:
      - 5080:80
      - 5443:443
    restart: always

  redis:
    image: redis:7.0.4
    volumes:
      - ./redis:/data
    restart: always

volumes:
  database:
  certs:
  html:
  redis:
  vhost.d:
db.env
MYSQL_DATABASE=nextcloud_db
MYSQL_ROOT_PASSWORD=<PASSWORD>
MYSQL_USER=nextcloud_db_user
MYSQL_PASSWORD=<PASSWORD>
Dockerfile nginx-proxy
FROM nginxproxy/nginx-proxy:1.0.1

COPY uploadsize.conf /etc/nginx/conf.d/uploadsize.conf
uploadsize.conf
client_max_body_size 8G;
proxy_request_buffering off;

Sorry if I forgot some informations. Please ask.

Looks really good. Try it!
But it seems to me that you will be have continious trouble with big files like it seems to me.

IMHO it could be a better solution to do this with seafile if your focus is filesync.

Okay maybe file up to 32 GB are to big. I reduce the file size to 8 GB. Could this be better or it is still too much?

I want to use Nextcloud not only to sync files between NAS, desktop and notebook, I also use it to sync my calendars and to upload pictures from my phone to the NAS.

Has seafile clients for Windows and Android?

Stick with nextcloud and see if it works well for you first. Main advantage is it being fully open source across the board + you’ve already set it up.

If you want to use nextcloud as “egg laying woolly pig” everything is fine. If you want to have a file synching tool IMHO seafile could be better because its faster why based on other basics then nextcloud. Seafile can be selfhostet with docker, my recommandation as a reverse proxy in your LAN behind your router / firewall. But i am using only nextcloud.

Yes, I will try it with Nextcloud because I learned very much in the past and it was also very hard for me.

The notebook downloads very many files (around 21000 (58 GB)) from the NAS to the new folder. I try to sync a big folder with the test instance. The desktop client breaks with the following note

This is the log.

log

app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:18 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/Wohnung/Wohnung%2014/_OV_0913.mp4 HTTP/1.1” 200 24008582 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:26 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/Wohnung/Wohnung%2014/_SC_1026.jpg HTTP/1.1” 200 603152 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:26 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/Wohnung/Wohnung%2014/_SC_1027.jpg HTTP/1.1” 200 610160 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:27 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/Wohnung/Wohnung%2014/_SC_1028.jpg HTTP/1.1” 200 563662 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:27 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/Wohnung/Wohnung%2014/_SC_1074.jpg HTTP/1.1” 200 453691 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:27 +0000] “GET /ocs/v2.php/apps/user_status/api/v1/user_status?format=json HTTP/1.1” 200 964 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:27 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/Wohnung/Wohnung%2014/_SC_1075.jpg HTTP/1.1” 200 445096 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:27 +0000] “GET /ocs/v2.php/apps/notifications/api/v2/notifications?format=json HTTP/1.1” 304 806 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:28 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/Wohnung/Wohnung%2014/_SC_1076.jpg HTTP/1.1” 200 447384 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:28 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/Wohnung/Wohnung%2014/_SC_1081.jpg HTTP/1.1” 200 502606 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:29 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/Wohnung/Wohnung%2014/_SC_1082.jpg HTTP/1.1” 200 626936 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:29 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/Wohnung/Wohnung%2014/_SC_1083.jpg HTTP/1.1” 200 608178 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:29 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/Wohnung/Wohnung%2014/_SC_1349.jpg HTTP/1.1” 200 763224 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:30 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/_von%20foo/2015%20FOOBAR/DSCI1481.JPG HTTP/1.1” 200 1639932 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:30 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/_von%20foo/2015%20FOOBAR/DSCI1482.JPG HTTP/1.1” 200 1785771 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:32 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/_von%20foo/2015%20FOOBAR/DSCI1484.JPG HTTP/1.1” 200 2009152 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:32 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/_von%20foo/2015%20FOOBAR/DSCI1485.JPG HTTP/1.1” 200 2098754 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:34 +0000] “GET /index.php/apps/theming/img/core/filetypes/video.svg HTTP/1.1” 200 1210 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:34 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/_von%20foo/2015%20FOOBAR/DSCI1486.JPG HTTP/1.1” 200 2024084 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:34 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/_von%20foo/2015%20FOOBAR/DSCI1487.JPG HTTP/1.1” 200 1952452 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:34 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/_von%20foo/2015%20FOOBAR/DSCI1488.JPG HTTP/1.1” 200 1938720 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:36 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/_von%20foo/2015%20FOOBAR/DSCI1491.JPG HTTP/1.1” 200 2024147 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - - [27/Jul/2022:19:58:39 +0000] “GET /ocs/v2.php/apps/notifications/api/v2/notifications HTTP/1.1” 304 806 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:40 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/_von%20foo/2015%20FOOBAR/DSCI1492.JPG HTTP/1.1” 200 2112801 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:42 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/_von%20foo/2015%20FOOBAR/DSCI1493.JPG HTTP/1.1” 200 2060682 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
db_1 | 2022-07-26 19:11:47+00:00 [Note] [Entrypoint]: Waiting for server startup
db_1 | 2022-07-26 19:11:47 0 [Note] mariadbd (server 10.8.3-MariaDB-1:10.8.3+maria~jammy) starting as process 99 …
db_1 | 2022-07-26 19:11:47 0 [Warning] You need to use --log-bin to make --binlog-format work.
db_1 | 2022-07-26 19:11:47 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
db_1 | 2022-07-26 19:11:47 0 [Note] InnoDB: Number of transaction pools: 1
db_1 | 2022-07-26 19:11:47 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions
db_1 | 2022-07-26 19:11:47 0 [Note] mariadbd: O_TMPFILE is not supported on /tmp (disabling future attempts)
db_1 | 2022-07-26 19:11:47 0 [Warning] mariadbd: io_uring_queue_init() failed with ENOMEM: try larger memory locked limit, ulimit -l, or systemd - MariaDB Knowledge Base under systemd (262144 bytes required)
db_1 | 2022-07-26 19:11:47 0 [Warning] InnoDB: liburing disabled: falling back to innodb_use_native_aio=OFF
db_1 | 2022-07-26 19:11:47 0 [Note] InnoDB: Initializing buffer pool, total size = 128.000MiB, chunk size = 2.000MiB
db_1 | 2022-07-26 19:11:47 0 [Note] InnoDB: Completed initialization of buffer pool
db_1 | 2022-07-26 19:11:47 0 [Note] InnoDB: File system buffers for log disabled (block size=4096 bytes)
db_1 | 2022-07-26 19:11:47 0 [Note] InnoDB: 128 rollback segments are active.
db_1 | 2022-07-26 19:11:47 0 [Note] InnoDB: Setting file ‘./ibtmp1’ size to 12.000MiB. Physically writing the file full; Please wait …
db_1 | 2022-07-26 19:11:47 0 [Note] InnoDB: File ‘./ibtmp1’ size is now 12.000MiB.
db_1 | 2022-07-26 19:11:47 0 [Note] InnoDB: log sequence number 46509; transaction id 14
db_1 | 2022-07-26 19:11:47 0 [Note] Plugin ‘FEEDBACK’ is disabled.
db_1 | 2022-07-26 19:11:47 0 [Warning] ‘user’ entry ‘root@540240e90c51’ ignored in --skip-name-resolve mode.
db_1 | 2022-07-26 19:11:47 0 [Warning] ‘proxies_priv’ entry ‘@% root@540240e90c51’ ignored in --skip-name-resolve mode.
db_1 | 2022-07-26 19:11:47 0 [Note] mariadbd: ready for connections.
db_1 | Version: ‘10.8.3-MariaDB-1:10.8.3+maria~jammy’ socket: ‘/run/mysqld/mysqld.sock’ port: 0 mariadb.org binary distribution
db_1 | 2022-07-26 19:11:48+00:00 [Note] [Entrypoint]: Temporary server started.
db_1 | Warning: Unable to load ‘/usr/share/zoneinfo/leap-seconds.list’ as time zone. Skipping it.
db_1 | Warning: Unable to load ‘/usr/share/zoneinfo/leapseconds’ as time zone. Skipping it.
db_1 | Warning: Unable to load ‘/usr/share/zoneinfo/tzdata.zi’ as time zone. Skipping it.
db_1 | 2022-07-26 19:11:53+00:00 [Note] [Entrypoint]: Securing system users (equivalent to running mysql_secure_installation)
db_1 | 2022-07-26 19:11:53+00:00 [Note] [Entrypoint]: Creating database test_db
db_1 | 2022-07-26 19:11:53+00:00 [Note] [Entrypoint]: Creating user test_db_user
db_1 | 2022-07-26 19:11:53+00:00 [Note] [Entrypoint]: Giving user test_db_user access to schema test_db
db_1 |
db_1 | 2022-07-26 19:11:53+00:00 [Note] [Entrypoint]: Stopping temporary server
db_1 | 2022-07-26 19:11:53 0 [Note] mariadbd (initiated by: root[root] @ localhost ): Normal shutdown
db_1 | 2022-07-26 19:11:53 0 [Note] InnoDB: FTS optimize thread exiting.
db_1 | 2022-07-26 19:11:53 0 [Note] InnoDB: Starting shutdown…
db_1 | 2022-07-26 19:11:53 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool
db_1 | 2022-07-26 19:11:53 0 [Note] InnoDB: Buffer pool(s) dump completed at 220726 19:11:53
db_1 | 2022-07-26 19:11:53 0 [Note] InnoDB: Removed temporary tablespace data file: “./ibtmp1”
db_1 | 2022-07-26 19:11:53 0 [Note] InnoDB: Shutdown completed; log sequence number 46509; transaction id 15
db_1 | 2022-07-26 19:11:53 0 [Note] mariadbd: Shutdown complete
db_1 |
db_1 | 2022-07-26 19:11:54+00:00 [Note] [Entrypoint]: Temporary server stopped
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:45 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/_von%20foo/2015%20FOOBAR/DSCI1494.JPG HTTP/1.1” 200 2076390 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:47 +0000] “GET /ocs/v1.php/cloud/user?format=json HTTP/1.1” 200 1286 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:47 +0000] “GET /remote.php/dav/avatars/admin/128.png HTTP/1.1” 200 2567 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - - [27/Jul/2022:19:59:09 +0000] “GET /ocs/v2.php/apps/notifications/api/v2/notifications HTTP/1.1” 304 806 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:59:18 +0000] “GET /ocs/v1.php/cloud/user?format=json HTTP/1.1” 200 1286 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:59:18 +0000] “PROPFIND /remote.php/dav/files/admin/ HTTP/1.1” 207 1115 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:59:20 +0000] “GET /remote.php/dav/avatars/admin/128.png HTTP/1.1” 200 2567 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:59:29 +0000] “GET /ocs/v2.php/apps/notifications/api/v2/notifications?format=json HTTP/1.1” 304 806 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:59:29 +0000] “GET /ocs/v2.php/apps/user_status/api/v1/user_status?format=json HTTP/1.1” 200 965 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:36 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/_von%20foo/2015%20FOOBAR/DSCI1489.AVI HTTP/1.1” 200 66334158 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - - [27/Jul/2022:19:59:40 +0000] “GET /ocs/v2.php/apps/notifications/api/v2/notifications HTTP/1.1” 304 806 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:59:44 +0000] “GET /index.php/apps/theming/img/core/filetypes/video.svg HTTP/1.1” 200 1210 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:59:44 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/_von%20foo/2015%20FOOBAR/DSCN1758.JPG HTTP/1.1” 200 1939271 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:59:56 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/_von%20foo/2015%20FOOBAR/DSCN1759.JPG HTTP/1.1” 200 2013889 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:20:00:04 +0000] “GET /ocs/v2.php/apps/user_status/api/v1/user_status?format=json HTTP/1.1” 200 965 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:20:00:04 +0000] “GET /ocs/v2.php/apps/notifications/api/v2/notifications?format=json HTTP/1.1” 304 806 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:20:00:08 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/_von%20foo/2015%20FOOBAR/DSCN1760.JPG HTTP/1.1” 200 1964072 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - - [27/Jul/2022:20:00:10 +0000] “GET /ocs/v2.php/apps/notifications/api/v2/notifications HTTP/1.1” 304 806 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:36 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/_von%20foo/2015%20FOOBAR/DSCI1490.AVI HTTP/1.1” 200 146603055 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 192.168.178.32 - admin [27/Jul/2022:19:58:48 +0000] “GET /remote.php/dav/files/admin/FOOBAR/Daten%20D/Bilder/_von%20foo/2015%20FOOBAR/DSCI1495.AVI HTTP/1.1” 200 116241135 “-” “Mozilla/5.0 (Windows) mirall/3.5.2stable-Win64 (build 20220701) (Nextcloud, windows-10.0.19044 ClientArchitecture: x86_64 OsArchitecture: x86_64)”
app_1 | 127.0.0.1 - - [27/Jul/2022:20:00:21 +0000] “OPTIONS * HTTP/1.0” 200 126 “-” “Apache/2.4.54 (Debian) PHP/8.0.21 (internal dummy connection)”
app_1 | 192.168.178.32 - - [27/Jul/2022:20:00:39 +0000] “GET /ocs/v2.php/apps/notifications/api/v2/notifications HTTP/1.1” 304 806 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0”
app_1 | 192.168.178.32 - - [27/Jul/2022:20:00:52 +0000] “PUT /apps/user_status/heartbeat HTTP/1.1” 200 929 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0”
app_1 | 192.168.178.32 - - [27/Jul/2022:20:01:09 +0000] “GET /ocs/v2.php/apps/notifications/api/v2/notifications HTTP/1.1” 304 806 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0”
app_1 | 192.168.178.32 - - [27/Jul/2022:20:01:13 +0000] “-” 408 0 “-” “-”
app_1 | 192.168.178.32 - - [27/Jul/2022:20:01:39 +0000] “GET /ocs/v2.php/apps/notifications/api/v2/notifications HTTP/1.1” 304 806 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0”
db_1 |
db_1 | 2022-07-26 19:11:54+00:00 [Note] [Entrypoint]: MariaDB init process done. Ready for start up.
db_1 |
db_1 | 2022-07-26 19:11:54 0 [Note] mariadbd (server 10.8.3-MariaDB-1:10.8.3+maria~jammy) starting as process 1 …
db_1 | 2022-07-26 19:11:54 0 [Warning] You need to use --log-bin to make --binlog-format work.
db_1 | 2022-07-26 19:11:54 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
db_1 | 2022-07-26 19:11:54 0 [Note] InnoDB: Number of transaction pools: 1
db_1 | 2022-07-26 19:11:54 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions
db_1 | 2022-07-26 19:11:54 0 [Note] mariadbd: O_TMPFILE is not supported on /tmp (disabling future attempts)
db_1 | 2022-07-26 19:11:54 0 [Warning] mariadbd: io_uring_queue_init() failed with ENOMEM: try larger memory locked limit, ulimit -l, or systemd - MariaDB Knowledge Base under systemd (262144 bytes required)
db_1 | 2022-07-26 19:11:54 0 [Warning] InnoDB: liburing disabled: falling back to innodb_use_native_aio=OFF
db_1 | 2022-07-26 19:11:54 0 [Note] InnoDB: Initializing buffer pool, total size = 128.000MiB, chunk size = 2.000MiB
db_1 | 2022-07-26 19:11:54 0 [Note] InnoDB: Completed initialization of buffer pool
db_1 | 2022-07-26 19:11:54 0 [Note] InnoDB: File system buffers for log disabled (block size=4096 bytes)
db_1 | 2022-07-26 19:11:54 0 [Note] InnoDB: 128 rollback segments are active.
db_1 | 2022-07-26 19:11:54 0 [Note] InnoDB: Setting file ‘./ibtmp1’ size to 12.000MiB. Physically writing the file full; Please wait …
db_1 | 2022-07-26 19:11:54 0 [Note] InnoDB: File ‘./ibtmp1’ size is now 12.000MiB.
db_1 | 2022-07-26 19:11:54 0 [Note] InnoDB: log sequence number 46509; transaction id 14
db_1 | 2022-07-26 19:11:54 0 [Note] Plugin ‘FEEDBACK’ is disabled.
db_1 | 2022-07-26 19:11:54 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
redis_1 | 1:M 27 Jul 2022 13:45:30.032 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 13:45:30.032 * Background saving started by pid 187
redis_1 | 187:C 27 Jul 2022 13:45:30.131 * DB saved on disk
redis_1 | 187:C 27 Jul 2022 13:45:30.131 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 13:45:30.133 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 13:50:31.004 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 13:50:31.004 * Background saving started by pid 188
redis_1 | 188:C 27 Jul 2022 13:50:31.106 * DB saved on disk
redis_1 | 188:C 27 Jul 2022 13:50:31.106 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 13:50:31.206 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 13:55:32.088 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 13:55:32.089 * Background saving started by pid 189
redis_1 | 189:C 27 Jul 2022 13:55:32.187 * DB saved on disk
redis_1 | 189:C 27 Jul 2022 13:55:32.188 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 13:55:32.189 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 14:00:33.062 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 14:00:33.063 * Background saving started by pid 190
redis_1 | 190:C 27 Jul 2022 14:00:33.211 * DB saved on disk
redis_1 | 190:C 27 Jul 2022 14:00:33.211 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 14:00:33.264 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 14:05:34.032 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 14:05:34.033 * Background saving started by pid 191
redis_1 | 191:C 27 Jul 2022 14:05:34.127 * DB saved on disk
redis_1 | 191:C 27 Jul 2022 14:05:34.128 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 14:05:34.133 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 18:00:50.171 * 1 changes in 3600 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 18:00:50.172 * Background saving started by pid 204
redis_1 | 204:C 27 Jul 2022 18:00:50.340 * DB saved on disk
redis_1 | 204:C 27 Jul 2022 18:00:50.340 * Fork CoW for RDB: current 1 MB, peak 1 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 18:00:50.373 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 18:09:47.009 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 18:09:47.010 * Background saving started by pid 205
db_1 | 2022-07-26 19:11:54 0 [Note] InnoDB: Buffer pool(s) load completed at 220726 19:11:54
db_1 | 2022-07-26 19:11:54 0 [Warning] You need to use --log-bin to make --expire-logs-days or --binlog-expire-logs-seconds work.
db_1 | 2022-07-26 19:11:54 0 [Note] Server socket created on IP: ‘0.0.0.0’.
db_1 | 2022-07-26 19:11:54 0 [Note] Server socket created on IP: ‘::’.
db_1 | 2022-07-26 19:11:54 0 [Note] mariadbd: ready for connections.
db_1 | Version: ‘10.8.3-MariaDB-1:10.8.3+maria~jammy’ socket: ‘/run/mysqld/mysqld.sock’ port: 3306 mariadb.org binary distribution
redis_1 | 205:C 27 Jul 2022 18:09:47.142 * DB saved on disk
redis_1 | 205:C 27 Jul 2022 18:09:47.143 * Fork CoW for RDB: current 1 MB, peak 1 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 18:09:47.211 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 18:14:48.064 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 18:14:48.065 * Background saving started by pid 206
redis_1 | 206:C 27 Jul 2022 18:14:48.150 * DB saved on disk
redis_1 | 206:C 27 Jul 2022 18:14:48.151 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 18:14:48.165 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 18:19:49.071 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 18:19:49.071 * Background saving started by pid 207
redis_1 | 207:C 27 Jul 2022 18:19:49.196 * DB saved on disk
redis_1 | 207:C 27 Jul 2022 18:19:49.197 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 18:19:49.273 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 18:24:50.043 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 18:24:50.043 * Background saving started by pid 208
redis_1 | 208:C 27 Jul 2022 18:24:50.153 * DB saved on disk
redis_1 | 208:C 27 Jul 2022 18:24:50.153 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 18:24:50.245 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 18:29:51.052 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 18:29:51.053 * Background saving started by pid 209
redis_1 | 209:C 27 Jul 2022 18:29:51.141 * DB saved on disk
redis_1 | 209:C 27 Jul 2022 18:29:51.142 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 18:29:51.154 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 18:34:52.081 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 18:34:52.081 * Background saving started by pid 210
redis_1 | 210:C 27 Jul 2022 18:34:52.230 * DB saved on disk
redis_1 | 210:C 27 Jul 2022 18:34:52.231 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 18:34:52.282 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 18:39:53.092 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 18:39:53.093 * Background saving started by pid 211
redis_1 | 211:C 27 Jul 2022 18:39:53.144 * DB saved on disk
redis_1 | 211:C 27 Jul 2022 18:39:53.145 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 18:39:53.194 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 18:44:54.069 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 18:44:54.069 * Background saving started by pid 212
redis_1 | 212:C 27 Jul 2022 18:44:54.152 * DB saved on disk
redis_1 | 212:C 27 Jul 2022 18:44:54.153 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 18:44:54.170 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 18:49:55.043 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 18:49:55.043 * Background saving started by pid 213
redis_1 | 213:C 27 Jul 2022 18:49:55.163 * DB saved on disk
redis_1 | 213:C 27 Jul 2022 18:49:55.163 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 18:49:55.245 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 18:54:56.015 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 18:54:56.015 * Background saving started by pid 214
redis_1 | 214:C 27 Jul 2022 18:54:56.129 * DB saved on disk
redis_1 | 214:C 27 Jul 2022 18:54:56.130 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 18:54:56.217 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 18:59:57.096 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 18:59:57.096 * Background saving started by pid 215
redis_1 | 215:C 27 Jul 2022 18:59:57.205 * DB saved on disk
redis_1 | 215:C 27 Jul 2022 18:59:57.206 * Fork CoW for RDB: current 1 MB, peak 1 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 18:59:57.299 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 19:04:58.010 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 19:04:58.011 * Background saving started by pid 216
redis_1 | 216:C 27 Jul 2022 19:04:58.075 * DB saved on disk
redis_1 | 216:C 27 Jul 2022 19:04:58.075 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 19:04:58.111 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 19:09:59.041 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 19:09:59.041 * Background saving started by pid 217
redis_1 | 217:C 27 Jul 2022 19:09:59.102 * DB saved on disk
redis_1 | 217:C 27 Jul 2022 19:09:59.102 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 19:09:59.142 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 19:15:00.012 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 19:15:00.012 * Background saving started by pid 218
redis_1 | 218:C 27 Jul 2022 19:15:00.134 * DB saved on disk
redis_1 | 218:C 27 Jul 2022 19:15:00.134 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 19:15:00.213 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 19:20:01.028 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 19:20:01.028 * Background saving started by pid 219
redis_1 | 219:C 27 Jul 2022 19:20:01.164 * DB saved on disk
redis_1 | 219:C 27 Jul 2022 19:20:01.165 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 19:20:01.230 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 19:25:02.091 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 19:25:02.092 * Background saving started by pid 220
redis_1 | 220:C 27 Jul 2022 19:25:02.212 * DB saved on disk
redis_1 | 220:C 27 Jul 2022 19:25:02.213 * Fork CoW for RDB: current 1 MB, peak 1 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 19:25:02.293 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 19:30:03.092 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 19:30:03.092 * Background saving started by pid 221
redis_1 | 221:C 27 Jul 2022 19:30:03.259 * DB saved on disk
redis_1 | 221:C 27 Jul 2022 19:30:03.260 * Fork CoW for RDB: current 1 MB, peak 1 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 19:30:03.294 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 19:35:04.035 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 19:35:04.035 * Background saving started by pid 222
redis_1 | 222:C 27 Jul 2022 19:35:04.136 * DB saved on disk
redis_1 | 222:C 27 Jul 2022 19:35:04.137 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 19:35:04.237 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 19:40:05.100 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 19:40:05.100 * Background saving started by pid 223
redis_1 | 223:C 27 Jul 2022 19:40:05.210 * DB saved on disk
redis_1 | 223:C 27 Jul 2022 19:40:05.210 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 19:40:05.301 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 19:45:06.081 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 19:45:06.081 * Background saving started by pid 224
redis_1 | 224:C 27 Jul 2022 19:45:06.198 * DB saved on disk
redis_1 | 224:C 27 Jul 2022 19:45:06.198 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 19:45:06.282 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 19:46:26.141 * 10000 changes in 60 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 19:46:26.141 * Background saving started by pid 225
redis_1 | 225:C 27 Jul 2022 19:46:26.301 * DB saved on disk
redis_1 | 225:C 27 Jul 2022 19:46:26.301 * Fork CoW for RDB: current 1 MB, peak 1 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 19:46:26.343 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 19:47:27.013 * 10000 changes in 60 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 19:47:27.014 * Background saving started by pid 226
redis_1 | 226:C 27 Jul 2022 19:47:27.129 * DB saved on disk
redis_1 | 226:C 27 Jul 2022 19:47:27.129 * Fork CoW for RDB: current 1 MB, peak 1 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 19:47:27.226 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 19:52:28.088 * 100 changes in 300 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 19:52:28.088 * Background saving started by pid 227
redis_1 | 227:C 27 Jul 2022 19:52:28.182 * DB saved on disk
redis_1 | 227:C 27 Jul 2022 19:52:28.183 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 19:52:28.189 * Background saving terminated with success
redis_1 | 1:M 27 Jul 2022 19:57:28.905 * 10000 changes in 60 seconds. Saving…
redis_1 | 1:M 27 Jul 2022 19:57:28.905 * Background saving started by pid 228
redis_1 | 228:C 27 Jul 2022 19:57:29.003 * DB saved on disk
redis_1 | 228:C 27 Jul 2022 19:57:29.003 * Fork CoW for RDB: current 1 MB, peak 1 MB, average 0 MB
redis_1 | 1:M 27 Jul 2022 19:57:29.006 * Background saving terminated with success

The client losts the connection to the Nextcloud test instance and also the connection to my other Nextcloud instance. After one or two minutes the connection refreshes and the sync starts again. The files which are shown in the red message were downloaded to the notebook and I can open them.

Or maybe is it better that I download the files directly from the NAS as initial base and use after that Nextcloud ony for syncing?

Additionally I have the issue that the Nextcloud Windows client cancel the operation if a file of size 0 byte should be up- or downloaded. What has to be configured that also empty files are synced by Nextcloud?