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
2014-04-22backport #6290 to stable5Jörn Friedrich Dreyer
2014-03-06Fixed X-Forwarded-Host parsingVincent Petry
Backport of d7163c9 from stable6
2014-03-06Added localhost as trusted domainVincent Petry
Backport of f1b948d from stable6
2014-03-06Show warning page when accessing server from an untrusted domainVincent Petry
Added early check for the requested domain host and show a warning page if the domain is not trusted. Backport of 9b6b02a from stable6
2014-02-25Fix case where port is missingVincent Petry
2014-02-22Backport #7259 to stable5Lukas Reschke
2014-02-22Revert "Backport #7259 to stable5"Lukas Reschke
This reverts commit 7bc69c7ea5ca73883ed1b8869929789bf7e85cd7.
2014-02-22Backport #7259 to stable5Lukas Reschke
2014-02-13initial backport of #6777 - mobile public pages - to stable5Jörn Friedrich Dreyer
2013-11-28Fix getRawPathInfo for the '/' edge caseRobin Appelman
2013-11-28fix custom routes defined by appsRobin Appelman
2013-11-27fixing failing unit testThomas Müller
2013-11-27fixes #6050Thomas Müller
2013-11-25in case uri and script name don't match we better throw an exceptionThomas Müller
2013-11-25handle duplicate slashes in case of reverse proxy configurationThomas Müller
Conflicts: tests/lib/request.php
2013-07-08Merge pull request #3893 from owncloud/backport_1872Bart Visscher
Backport #1872
2013-07-03use $_SERVER['SERVER_NAME'] in case $_SERVER['HTTP_HOST'] is not setThomas Müller
2013-07-03in case $_SERVER['HTTP_HOST']) is not set let's return localhost - better ↵Thomas Mueller
than nothing
2013-06-28request.php: add type check to the not empty check of a stringherbrechtsmeier
The not equal comparison (<>) of a variable with an empty string could lead to false positive results as the compare do not check the type and thereby could not make sure that the checked variable is a string. The usage of the not identical comparison operator (!==) make sure that the variable is a string and not empty.
2013-06-28Overwrite host and webroot when forcessl is enabledherbrechtsmeier
This patch enables the use of forcessl together with a multiple domains reverse SSL proxy (owncloud/core#1099) which have different hostname and webroot for http and https access. The code assumes that the ssl proxy (https) hostname and webroot is configured via overwritehost and overwritewebroot.
2013-02-28Use the plain urlencoded path info for the routing matchingBart Visscher
2013-02-22Whitespace fixesBart Visscher
2013-02-14Whitespace indent fixesBart Visscher
2013-02-11add a custom header clients can use to skip a n additional propset requestJörn Friedrich Dreyer
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-16Whitespace cleanupBart Visscher
2012-12-15Fix "There must be a single space between the closing parenthesis and the ↵Bart Visscher
opening brace"
2012-12-15Fix "Line indented incorrectly"Bart Visscher
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-11-04Checkstyle fixes: NoSpaceAfterCommaFelix Moeller
2012-09-07adding space between) and {Thomas Mueller
2012-09-04Remove () from return statementBart Visscher
2012-08-07Decode the alternative path_infoBart Visscher
2012-08-07Move getting the path info to OC_RequestBart Visscher
2012-08-07Add comments the other functions in OC_RequestBart Visscher
2012-08-07Move serverHost and serverProtocol functions to OC_RequestBart Visscher
2012-06-18Fix errors for minimizerBart Visscher
2012-06-18Cache the minimized output also on the serverBart Visscher