Skip to content
Snippets Groups Projects
  1. Oct 25, 2016
  2. Oct 18, 2016
  3. Sep 27, 2016
  4. Sep 08, 2016
  5. Jul 22, 2016
    • Thomas Pulzer's avatar
      Changed logtype to file instead of owncloud. · ba3f4f11
      Thomas Pulzer authored
      - Updated the config sample to point to log_type='file'
      - Renamed the Class for logfile logging to File in namespace 'OC\Log\'.
        Changed the occurrences of 'OC\Log\Owncloud' to 'OC\Log\File'.
      - Renamed the Class for log:file command to File in namespace 'OC\Core\Command\Log\File'.
        Changed registration of the command to use 'OC\Core\Command\Log\File'.
      - Changed default Syslog tag to Nextcloud
      - Retained backwards compatibility for configs with 'logtype' => 'owncloud'
      
      - Adjusted tests for the new file log.
      
      Closes #490.
      ba3f4f11
    • Joas Schilling's avatar
      Fix typo · 04b5cb84
      Joas Schilling authored
      Unverified
      04b5cb84
  6. Jul 21, 2016
  7. Jul 20, 2016
    • Lukas Reschke's avatar
      Implement brute force protection · ba4f12ba
      Lukas Reschke authored
      Class Throttler implements the bruteforce protection for security actions in
      Nextcloud.
      
      It is working by logging invalid login attempts to the database and slowing
      down all login attempts from the same subnet. The max delay is 30 seconds and
      the starting delay are 200 milliseconds. (after the first failed login)
      Unverified
      ba4f12ba
  8. Jul 15, 2016
  9. Jul 13, 2016
  10. Jul 07, 2016
  11. Jul 06, 2016
  12. Jul 04, 2016
  13. Jun 20, 2016
  14. Jun 16, 2016
  15. Jun 01, 2016
  16. May 24, 2016
  17. May 23, 2016
  18. May 20, 2016
  19. May 12, 2016
    • Lukas Reschke's avatar
      Do not automatically try to enable index.php-less URLs (#24539) · 52add798
      Lukas Reschke authored
      The current logic for mod_rewrite relies on the fact that people have properly configured ownCloud, basically it reads from the `overwrite.cli.ur
      l` entry and then derives the `RewriteBase` from it.
      
      This usually works. However, since the ownCloud packages seem to install themselves at `/owncloud` (because subfolders are cool or so…) _a lot_ of people have just created a new Virtual Host for it or have simply symlinked the path etc.
      
      This means that `overwrite.cli.url` is wrong, which fails hard if it is used as RewriteBase since Apache does not know where it should serve files from. In the end the ownCloud instance will not be accessible anymore and users will be frustrated. Also some shared hosters like 1&1 (because using shared hosters is so awesome… ;-)) have somewhat dubious Apache configurations or use versions of mod_rewrite from the mediveal age. (because updating is money or so…)
      
      Anyhow. This makes this explicitly an opt-in configuration flag. If `htaccess.RewriteBase` is set then it will configure index.php-less URLs, if
      admins set that after installation and don't want to wait until the next ownCloud version they can run `occ maintenance:update:htaccess`.
      
      For ownCloud 9.0 we also have to add a repair step to make sure that instances that already have a RewriteBase configured continue to use it by copying it into the config file. That way all existing URLs stay valid. That one is not in this PR since this is unneccessary in master.
      
      Effectively this reduces another risk of breakage when updating from ownCloud 8 to ownCloud 9.
      
      Fixes https://github.com/owncloud/core/issues/24525, https://github.com/owncloud/core/issues/24426 and probably some more.
      52add798
  20. May 11, 2016
  21. May 09, 2016
    • Lukas Reschke's avatar
      Make update server URL configurable · 8b428d84
      Lukas Reschke authored
      Currently testing the updates is a big problem and not really super easy possible. Since we now have a new updater server we should also make this configurable so that people can properly test updates.
      Unverified
      8b428d84
  22. Apr 18, 2016
  23. Apr 15, 2016
  24. Apr 14, 2016
  25. Apr 12, 2016
  26. Apr 07, 2016
  27. Mar 02, 2016
  28. Mar 01, 2016
  29. Feb 03, 2016
  30. Jan 20, 2016
Loading