Skip to content
Snippets Groups Projects
  1. Feb 13, 2025
  2. Feb 11, 2025
  3. Feb 07, 2025
  4. Jan 24, 2025
  5. Jan 17, 2025
  6. Jan 16, 2025
  7. Jan 11, 2025
  8. Jan 09, 2025
  9. Dec 23, 2024
  10. Dec 14, 2024
  11. Dec 12, 2024
  12. Dec 07, 2024
  13. Dec 05, 2024
  14. Nov 27, 2024
  15. Nov 25, 2024
  16. Nov 24, 2024
  17. Nov 12, 2024
  18. Nov 07, 2024
  19. Oct 24, 2024
    • 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
  20. Oct 22, 2024
  21. Oct 21, 2024
Loading