Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-03-06Merge pull request #7419 from Abijeet/feature-7175Morris Jobke
Fixes #7175 - Allow to search for email address in user management
2018-02-28Correct mistaken regex wildcard in .htaccessDan Callahan
Fixes #8578 Signed-off-by: Dan Callahan <dan.callahan@gmail.com>
2018-02-05Handle SSL certificate verifications for others than Let's EncryptRobert Scheck
Do no longer (wrongly) rewrite URLs like * http://example.net/.well-known/pki-validation/file.txt (Comodo) * http://example.net/.well-known/pki-validation/fileauth.txt (DigiCert, Thawte, GeoTrust) * http://example.net/.well-known/pki-validation/gsdv.txt (GlobalSign) * http://example.net/.well-known/pki-validation/starfield.htm (Starfield, GoDaddy) * http://example.net/.well-known/pki-validation/swisssign-check.txt (SwissSign) for automated SSL certificate verifications. All (common commercial) certificate authorities (CA) except Let's Encrypt (via ACME) seem to use "pki-validation" rather "acme-challenge" for their domain control validation (DCV). Signed-off-by: Robert Scheck <robert@fedoraproject.org>
2017-12-18Added newline to end of htaccess fileAbijeet
Signed-off-by: Abijeet <abijeetpatro@gmail.com>
2017-12-16Adds search by email function on the users screen.Abijeet
Fixes #7175. - Updated the query to fetch the users in users > everyone tab. - Updated the query to fetch the users in users > admin tab. - Tested to ensure that the disabled users are also being fetched. - Added test cases. Signed-off-by: Abijeet <abijeetpatro@gmail.com>
2017-03-26Move X-Frame-Options into PHPLukas Reschke
The public calendar view should be embeddable and we can't do that if the .htaccess sets a global X-Frame-Options. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-02-04Fix for Win Clients sometimes not connectingFlole998
Fix for Win Clients sometimes not connecting
2016-11-14Cache js, css and woff files for a week (#26591)Jörn Friedrich Dreyer
increases the cache duration for css and js files from 2 hours to half a year. Should they change the versionhash changes as well and a new file is fetched. Half a year should be long enough for oc updates. Also allows caching woff files for 7 days. Currently, there is no versionhash available, but pressing F5 will also refresh the woff files.
2016-09-13Make sure memory limit is > post size and upload filesizeJoas Schilling
2016-08-08Also cache WOFF, SVG and GIFLukas Reschke
2016-06-03.htaccess update making two rules non-capturingMartin
2016-05-12Do not automatically try to enable index.php-less URLs (#24539)Lukas Reschke
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.
2016-03-17Use raw PATH_INFOLukas Reschke
PATH_INFO will be empty at this point and thus the logic in base.php did not catch this. Changing this to "getRawPathInfo" will ensure that the path info is properly read. Fixes https://github.com/owncloud/core/issues/23199
2016-03-15always_populate_raw_post_data has been removed with PHP 7.0Lukas Reschke
2016-03-15Duplicate block for PHP 7Lukas Reschke
2016-03-11Allow jpg files to be statically servedStephan Köninger
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.
2016-03-09Add base rewrite rule only when RewriteBase is definedLukas Reschke
In case Apache is configured with an `Alias` such as with the ownCloud packages the rewrite rules will fail when no valid RewriteBase is configured.
2016-02-25Exclude ocs-provider from rewrite ruleLukas Reschke
Otherwise `localhost/ocs-provider/` cannot be accessed if mod_rewrite is install ed. Only affects master.
2016-02-05Merge pull request #18194 from RealRancor/proxy_fcgiThomas Müller
Add mod_proxy_fcgi to .htaccess
2016-01-28Do not rewrite updater requestsVictor Dubiniuk
2016-01-12Add X-Download-Options and X-Permitted-Cross-Domain-PoliciesLukas Reschke
Two small security hardenings for our IE users and those with Adobe products. Aligns it more with https://github.com/twitter/secureheaders#secureheaders---
2016-01-08Remove CSP stuff from .htaccessLukas Reschke
:cry: Seems like Apache is inconsistent fun between versions. Let's remove it thus for now.
2016-01-08always check if the csp is emptyJörn Friedrich Dreyer
2016-01-08Use setifempty to please incompatible httpd versionsLukas Reschke
Some httpd versions have problem with the old logic leading to resourced served with multiple headers.
2016-01-07Merge pull request #20966 from knox/masterThomas Müller
Do not rewrite letsencrypt .well-known URI
2016-01-06Allow ico files to be served staticallyMorris Jobke
2015-12-30Merge branch 'master' into mastermbi
2015-12-11Merge pull request #20878 from ↵Thomas Müller
owncloud/proper-htaccess-support-in-code-signing-checker Also run .htaccess routine when installing on another system than Apache
2015-12-08Do not rewrite letsencrypt .well-known URImbi
2015-12-08Merge branch 'master' into mastermbi
2015-12-08Remove version check out of .htaccessLukas Reschke
This can now be achieved using the new code signing.
2015-12-08Add DirectorySlash to dynamic .htaccess writeLukas Reschke
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.
2015-12-07Allow .ico filesLukas Reschke
Makes `/core/img/favicon.ico` accessible again via web.
2015-12-07Add CSP header to static resourcesLukas Reschke
Fixes https://github.com/owncloud/core/issues/16164
2015-12-06Allow .well-known URI for letsencryptmbi
See https://letsencrypt.readthedocs.org/en/latest/using.html#webroot
2015-12-02fix indentationMorris Jobke
2015-12-01Append PATH_INFO to ensure that file can be loaded on updateLukas Reschke
2015-12-01Disable MultiView + DirectorySlashLukas Reschke
Required for routes that might otherwise collide with existing folders on the system
2015-12-01Set "SetEnv" within base `.htaccess` fileLukas Reschke
mod_rewrite as used by the front controller may require a `RewriteBase` in case the installation is done using an alias. Since we cannot enforce a writable `.htaccess` file this will move the `front_controller_active` environment variable into the main .htaccess file. If administrators decide to have this one not writable they can still enable this feature by setting the `front_controller_active` environment variable within the Apache config.
2015-12-01Support pretty URLsLukas Reschke
This changeset allows ownCloud to run with pretty URLs, they will be used if mod_rewrite and mod_env are available. This means basically that the `index.php` in the URL is not shown to the user anymore. Also the not deprecated functions to generate URLs have been modified to support this behaviour, old functions such as `filePath` will still behave as before for compatibility reasons. Examples: http://localhost/owncloud/index.php/s/AIDyKbxiRZWAAjP => http://localhost/owncloud/s/AIDyKbxiRZWAAjP http://localhost/owncloud/index.php/apps/files/ => http://localhost/owncloud/apps/files/ Due to the way our CSS and JS is structured the .htaccess uses some hacks for the final result but could be worse... And I was just annoyed by all that users crying for the removal of `index.php` ;-)
2015-11-18Update .well-known redirects to the new dav endpointThomas Müller
This reverts commit 68321efd29184fbc1bef409ec41f9b38501116ef.
2015-11-18Revert "Update .well-known redirects to the new dav endpoint"Thomas Müller
This reverts commit d831c255ea726b8e8aaa0b3c1a8186808b82f73e.
2015-11-18Update .well-known redirects to the new dav endpointThomas Müller
2015-11-18Add mod_proxy_fcgi and mod_fastcgi to .htaccessRealRancor
2015-10-15Remove legacy non-working rewrites in .htaccessRealRancor
2015-10-14Master is now 9.0.0 developmentJoas Schilling
2015-09-29Fix .htaccess: php_value should be integerRealRancor
2015-08-16properly indent .htaccessMorris Jobke
2015-07-01This will be 8.2 in the futureFrank Karlitschek
2015-03-30Merge pull request #15042 from wolfgangkarall/masterLukas Reschke
.htaccess RewriteRules: use permanent redirect for .well-known/(cal|card)dav, add 'L' flag