Skip to content
Snippets Groups Projects
  1. Mar 10, 2016
    • Stephan Köninger's avatar
      Allow jpg files to be statically served · 73a7c45d
      Stephan Köninger authored
      When using an background image in themes of type JPG, the current setting of owncloud's htaccess file does not allow to deliver these kinds of images as static content. Adding the file extensions as done in this commit, it works flawlessly.
      73a7c45d
  2. Mar 09, 2016
  3. Feb 25, 2016
  4. Jan 28, 2016
  5. Jan 12, 2016
  6. Jan 08, 2016
  7. Jan 06, 2016
  8. Dec 08, 2015
    • mbi's avatar
      Do not rewrite letsencrypt .well-known URI · 1aff941b
      mbi authored
      1aff941b
    • Lukas Reschke's avatar
      Remove version check out of .htaccess · 235094ab
      Lukas Reschke authored
      This can now be achieved using the new code signing.
      235094ab
    • Lukas Reschke's avatar
      Add DirectorySlash to dynamic .htaccess write · 3bce1b20
      Lukas Reschke authored
      When `DirectorySlash off` is set then Apache will not lookup folders anymore. This is required for example when we use the rewrite directives on an existing path such as  `/core/search`. By default Apache would load `/core/search/` instead `/core/search` so the redirect would fail here.
      
      This leads however to the problem that URLs such as `localhost/owncloud` would not load anymore while `localhost/owncloud/` would. This has caused problems such as https://github.com/owncloud/core/pull/21015
      
      With this change we add the `DirectorySlash off` directive only when the `.htaccess` is writable to the dynamic part of it. This would also make `localhost/owncloud` work again as it would trigger the 404 directive which triggers the redirect in base.php.
      3bce1b20
  9. Dec 07, 2015
  10. Dec 05, 2015
  11. Dec 02, 2015
  12. Dec 01, 2015
  13. Nov 18, 2015
  14. Nov 17, 2015
  15. Oct 15, 2015
  16. Oct 14, 2015
  17. Sep 29, 2015
  18. Aug 16, 2015
  19. Jul 01, 2015
  20. Mar 26, 2015
  21. Mar 19, 2015
  22. Mar 02, 2015
    • Lukas Reschke's avatar
      Let users configure security headers in their Webserver · bbd5f284
      Lukas Reschke authored
      Doing this in the PHP code is not the right approach for multiple reasons:
      
      1. A bug in the PHP code prevents them from being added to the response.
      2. They are only added when something is served via PHP and not in other cases (that makes for example the newest IE UXSS which is not yet patched by Microsoft exploitable on ownCloud)
      3. Some headers such as the Strict-Transport-Security might require custom modifications by administrators. This was not possible before and lead to buggy situations.
      
      This pull request moves those headers out of the PHP code and adds a security check to the admin settings performed via JS.
      bbd5f284
  23. Feb 27, 2015
  24. Feb 23, 2015
  25. Feb 21, 2015
  26. Feb 10, 2015
  27. Jan 28, 2015
  28. Jan 22, 2015
  29. Jan 08, 2015
    • Lukas Reschke's avatar
      Add version to .htaccess · 7fbb7f4d
      Lukas Reschke authored
      Currently if a user does not replace the .htaccess file with the new update this can lead to serious problems in case Apache is used as webserver.
      
      This commit adds the version to the .htaccess file and the update routine fails in case not the newest version is specified in there. This obviously means that every release has to update the version specified in .htaccess as well. But I see no better solution for it.
      
      Conflicts:
      	lib/private/updater.php
      7fbb7f4d
Loading