Code Monkey home page Code Monkey logo

Comments (3)

xoxys avatar xoxys commented on May 29, 2024 1

Agree, looks like a core issue. Thanks @ho4ho!

from server.

mkuf avatar mkuf commented on May 29, 2024

Same issue here, slightly different Setup w/ traefik.

The admin panel reports issues with WebDAV.
image

The files app does not show any directories or files, but they exist on the underlying filesystem.
Docker logs show a 405 error when a PROPFIND is sent to the container.

172.19.0.17 - - [09/Apr/2023:23:17:43 +0000] "GET /owncloud/apps/files/ HTTP/1.1" 200 5830 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36"
172.19.0.17 - - [09/Apr/2023:23:17:43 +0000] "GET /owncloud/core/js/oc.js?v=cb37f41f070a4da019c1e04eda1e29cb HTTP/1.1" 200 8245 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36"
172.19.0.17 - - [09/Apr/2023:23:17:43 +0000] "GET /owncloud/core/vendor/jquery/dist/jquery.min.map HTTP/1.1" 302 934 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36"
172.19.0.17 - - [09/Apr/2023:23:17:43 +0000] "GET /owncloud/apps/files/ HTTP/1.1" 200 5826 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36"
172.19.0.17 - - [09/Apr/2023:23:17:43 +0000] "GET /owncloud/core/vendor/es6-promise/es6-promise.auto.map HTTP/1.1" 302 934 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36"
172.19.0.17 - - [09/Apr/2023:23:17:43 +0000] "GET /owncloud/core/vendor/underscore/underscore-umd.js.map HTTP/1.1" 302 934 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36"
172.19.0.17 - - [09/Apr/2023:23:17:44 +0000] "GET /owncloud/index.php/apps/richdocuments/ajax/settings.php HTTP/1.1" 200 742 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36"
172.19.0.17 - - [09/Apr/2023:23:17:44 +0000] "GET /owncloud/ocs/v2.php/apps/notifications/api/v1/notifications?format=json HTTP/1.1" 302 665 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36"
172.19.0.17 - - [09/Apr/2023:23:17:44 +0000] "GET /owncloud/apps/files/ HTTP/1.1" 200 5833 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36"
172.19.0.17 - - [09/Apr/2023:23:17:44 +0000] "PROPFIND /owncloud/remote.php/dav/files/markus/ HTTP/1.1" 405 660 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36"
172.19.0.17 - - [09/Apr/2023:23:17:44 +0000] "GET /owncloud/index.php/apps/files/ajax/getstoragestats.php?dir=%2F HTTP/1.1" 200 812 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36"
172.19.0.17 - - [09/Apr/2023:23:17:44 +0000] "GET /owncloud/apps/files/ HTTP/1.1" 200 5828 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36"
172.19.0.17 - - [09/Apr/2023:23:17:44 +0000] "GET /owncloud/apps/files/ HTTP/1.1" 200 5568 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36"

from my compose file:

  owncloud:
    container_name: owncloud
    depends_on:
    - mariadb
    environment:
      OWNCLOUD_ADMIN_PASSWORD: redacted
      OWNCLOUD_ADMIN_USERNAME: admin
      OWNCLOUD_DB_HOST: mariadb
      OWNCLOUD_DB_NAME: owncloud
      OWNCLOUD_DB_PASSWORD: redacted
      OWNCLOUD_DB_TYPE: mysql
      OWNCLOUD_DB_USERNAME: owncloud
      OWNCLOUD_DOMAIN: yggdrasil
      OWNCLOUD_TRUSTED_DOMAINS: yggdrasil
      OWNCLOUD_MYSQL_UTF8MB4: 'true'
      OWNCLOUD_REDIS_ENABLED: 'false'
      OWNCLOUD_SUB_URL: /owncloud
    healthcheck:
      interval: 30s
      retries: 5
      test:
      - CMD
      - /usr/bin/healthcheck
      timeout: 10s
    hostname: owncloud
    image: owncloud/server:latest
    labels:
    - traefik.enable=true
    - traefik.http.services.owncloud.loadbalancer.server.port=8080
    - traefik.http.routers.owncloud.rule=PathPrefix(`/owncloud`)
    - traefik.http.routers.owncloud.entrypoints=web-ssl
    restart: unless-stopped
    volumes:
    - /media/data/owncloud-data:/mnt/data
    - /etc/ssl/certs/ca-certificates.crt:/var/www/owncloud/resources/config/ca-bundle.crt

config.php

<?php
$CONFIG = array (
  'apps_paths' =>
  array (
    0 =>
    array (
      'path' => '/var/www/owncloud/apps',
      'url' => '/apps',
      'writable' => false,
    ),
    1 =>
    array (
      'path' => '/var/www/owncloud/custom',
      'url' => '/custom',
      'writable' => true,
    ),
  ),
  'trusted_domains' =>
  array (
    0 => 'yggdrasil',
  ),
  'datadirectory' => '/mnt/data/files',
  'dbtype' => 'mysql',
  'dbhost' => 'mariadb:3306',
  'dbname' => 'owncloud',
  'dbuser' => 'owncloud',
  'dbpassword' => 'redacted',
  'dbtableprefix' => 'oc_',
  'log_type' => 'owncloud',
  'supportedDatabases' =>
  array (
    0 => 'sqlite',
    1 => 'mysql',
    2 => 'pgsql',
  ),
  'upgrade.disable-web' => true,
  'default_language' => 'en',
  'htaccess.RewriteBase' => '/owncloud',
  'logfile' => '/mnt/data/files/owncloud.log',
  'loglevel' => 2,
  'memcache.local' => '\\OC\\Memcache\\APCu',
  'mysql.utf8mb4' => true,
  'filelocking.enabled' => true,
  'passwordsalt' => 'redacted',
  'secret' => 'redacted',
  'version' => '10.12.0.6',
  'logtimezone' => 'UTC',
  'installed' => true,
  'instanceid' => 'redacted',
  'maintenance' => false,
  'allow_user_to_change_mail_address' => '',
);

from server.

xoxys avatar xoxys commented on May 29, 2024

I'm going to close this by https://doc.owncloud.com/docs/next/server_release_notes.html#owncloud-inaccessibility A fix will be shipped in the next onwCloud 10.12.1 core release.

from server.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.