1. 25 Feb, 2025 1 commit
  2. 13 Feb, 2025 2 commits
  3. 11 Feb, 2025 1 commit
  4. 07 Feb, 2025 5 commits
  5. 24 Jan, 2025 1 commit
  6. 17 Jan, 2025 1 commit
  7. 16 Jan, 2025 2 commits
  8. 11 Jan, 2025 2 commits
  9. 09 Jan, 2025 1 commit
  10. 23 Dec, 2024 2 commits
  11. 14 Dec, 2024 1 commit
  12. 12 Dec, 2024 2 commits
  13. 07 Dec, 2024 1 commit
  14. 05 Dec, 2024 2 commits
  15. 27 Nov, 2024 1 commit
  16. 25 Nov, 2024 1 commit
  17. 24 Nov, 2024 3 commits
  18. 12 Nov, 2024 2 commits
  19. 07 Nov, 2024 3 commits
  20. 24 Oct, 2024 2 commits
    • GitHub Workflow's avatar
      Runs update.sh · 29d959ac
      GitHub Workflow authored
      29d959ac
    • Valentin Brandl's avatar
      Fix initialization of `autocreate` and `use_ssl` (#2309) · d3341b61
      Valentin Brandl authored
      According to the documentation, both `OBJECTSTORE_S3_SSL` and
      `OBJECTSTORE_S3_AUTOCREATE` should default to `true`.
      Currently, when these environment variables are not set, they default to
      `false`. (See https://github.com/nextcloud/docker/issues/2308
      
      ).
      
      This fix works, because `strtolower(false)` returns the empty string. So
      when `OBJECTSTORE_S3_SSL` is not set and `getenv('OBJECTSTORE_S3_SSL')`
      returns `false`, the check `strtolower($use_ssl) !== 'false'` will
      evaluate to `true`.
      
      With this fix, both values will be `true` if they are
      
      * not set
      * the empty string
      * any string that is not equal to `false` when converted to lowercase
      
      This should now match the documented behavior.
      Signed-off-by: default avatarValentin Brandl <mail@vbrandl.net>
      d3341b61
  21. 22 Oct, 2024 3 commits
  22. 21 Oct, 2024 1 commit