Internal Server Error - No logs to troubleshoot

Hey,

All of a sudden Nextcloud is giving me an “Interal Server Error”. I’ve tried looking for the logs, but the path /var/www/nextcloud/data does not exist. I’ve also tried adding command: --innodb_read_only_compressed=OFF to the stack, but with no luck. Any idea what I can do to fix this?

I’ve attached a copy of my stack.

---
version: "2.1"
services:
  nextcloud:
    image: lscr.io/linuxserver/nextcloud
    container_name: nextcloud
    networks:
      - milkyway
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Oslo
    volumes:
      - /mnt/volume/appdata/nextcloud:/config
      - /mnt/volume/data/nextcloud:/data
    ports:
      - 8888:80
      - 4443:443
    restart: unless-stopped
networks:
  milkyway:
    external: true