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
2013-03-02Remove uneeded \ since we're using "Lukas Reschke
2013-02-10add switch to enable/disable the possibility to change the display name by ↵Björn Schießle
the user
2013-02-06make it possible to modify the links to the clientsGeorg Ehrke
2013-02-04Merge pull request #1445 from owncloud/CSP_fontThomas Müller
Allow loading of external fonts
2013-02-04Also allow local filesLukas Reschke
2013-02-04Allow the loading of local font files embedded via data:Lukas Reschke
2013-02-04Allow loading of external fontsLukas Reschke
Required by several applications like our pdf viewer
2013-02-04Make fileblacklist configurableLukas Reschke
2013-01-31add SSL proxy supportherbrechtsmeier
Add support for a reverse proxy that only forwards SSL connections unencrypted to the web server. This patch allows to detect the reverse proxy via regular expression for the remote IP address and conditional overwrite the host name, protocol and web root.
2013-01-31add multiple domains reverse proxy supportStefan Herbrechtsmeier
Add support for a reverse proxy that handles multiple domains via different web roots (http[s]://proxy.tld/domain.tld/owncloud). As the reverse proxy web root is transparent for the web server the REQUEST_URI and SCRIPT_NAME need manual adjustments. This patch replace the direct use of this _SERVER variables with function calls and extend this functions to overwrite the web root. Additionally it adds a Sabre request backend that extends the Sabre_HTTP_Request to use the same functions.
2013-01-28fix merge conflictsBjörn Schießle
2013-01-28Merge pull request #1318 from j-ed/masterThomas Müller
added parameter mail_smtpauthtype to set SMTP authentication type.
2013-01-26Update config/config.sample.phpj-ed
added parameter mail_smtpauthtype to set SMTP authentication type.
2013-01-25Warn users not to enable DEBUG in productive environmentsLukas Reschke
The debug mode should not be enabled in productive environments and is also a security risk since some apps outputs unsanitized debug data to the template.
2013-01-25Merge branch 'master' into no-inline-jsLukas Reschke
2013-01-25Allow the loading of external imagesLukas Reschke
2013-01-23Allow admins to change the CSP policy in the config fileLukas Reschke
2013-01-23Update config/config.sample.phpj-ed
fixed an other typo.
2013-01-23Update config/config.sample.phpj-ed
Fixed type in line 70. Thank you for pointing me to that typo.
2013-01-22fix typo in commentBjörn Schießle
2013-01-22allow admin to change retention obligation for the trash bin, default value ↵Björn Schießle
is 180 days
2013-01-22Update config/config.sample.phpj-ed
Added three additional mail_smtp.. parameters. - mail_smtpdebug - enable debug messages to analyse SMTP problems. - mail_smtptimeout - set SMTP timeout which is set to 10s by default and this is sometimes to short especially if a malware/ spam scanner is used. - mail_smtpsecure - force secure SMTP connections.
2013-01-16Spaces to tabsBart Visscher
2013-01-15Enhanced auth is totally unmaintained and brokenLukas Reschke
Let's remove it, it's also not secure anymore with the introduction of our API etc... (And doesn't work with ldap etc…)
2013-01-04Add maintenance mode entry to config.sample.phpMichael Gapczynski
2013-01-02add smtp port configuration optionThomas Mueller
2012-12-19call it "proxy" instead of "curlproxy"root
Thanks Bart for the hint. This also switches "==" to "<>" and not the code actually works ;-)
2012-12-19add curl proxy support. Fixes #504Frank Karlitschek
https://github.com/owncloud/core/issues/504
2012-11-25add sample configuration for user backendsRobin Appelman
2012-11-22make it possible to manually override the hostname and protocol if the ↵Frank Karlitschek
automatic detection from ownCloud fails. This can happen in reverse proxy situations or with loadbalancers setups.
2012-10-16Merge pull request #31 from visit1985/persistentcookiesLukas Reschke
reresubmit: improved persistent cookies :)
2012-10-16Make enhanced auth configurableLukas Reschke
2012-10-16Make enhanced auth time configurableLukas Reschke
2012-10-15Make the lifetime of the remember login cookieBart Visscher
2012-09-23Correct "ownCloud"Lukas Reschke
2012-06-22Add little more doc about app foldersBrice Maron
2012-06-15Correct sample configBrice Maron
2012-06-15Merge branch 'master' into multi_app_dirBrice Maron
Conflicts: apps/bookmarks/ajax/addBookmark.php config/config.sample.php lib/app.php remote.php
2012-06-15Add possibility to choose the installation folderBrice Maron
2012-06-09finally fix the updater. next is an automatic updater. but this is a bit ↵Frank Karlitschek
more tricky.
2012-06-08generate a random salt during installation and store it in the config.php. ↵Frank Karlitschek
use it to salt the password hashing.
2012-06-08add spacing lines to our awesome new sample config file. readability++Frank Karlitschek
2012-06-08Add doc about multi app dir in sample configBrice Maron
2012-06-08Add help texts to config options in config.sample.phpBart Visscher
2012-06-05Make check for writable apps dir configurableBart Visscher
2012-05-31fix oc-780Frank Karlitschek
2012-05-11make default app choosableGeorg Ehrke
2012-04-30removing executable bit from various filesThomas Mueller
2012-04-22document the log settingsFrank Karlitschek
2012-04-22Add a static code checker for evil patterns in apps.Frank Karlitschek
Disabled by default for now. We will check for private api calls here later once the public api is in place