Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | use $_SERVER['SERVER_NAME'] in case $_SERVER['HTTP_HOST'] is not set | Thomas Müller | 2013-07-01 | 1 | -2/+8 |
| | |||||
* | in case $_SERVER['HTTP_HOST']) is not set let's return localhost - better ↵ | Thomas Mueller | 2013-06-17 | 1 | -7/+7 |
| | | | | than nothing | ||||
* | request.php: add type check to the not empty check of a string | herbrechtsmeier | 2013-03-09 | 1 | -5/+5 |
| | | | | | | | | 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. | ||||
* | Overwrite host and webroot when forcessl is enabled | herbrechtsmeier | 2013-03-09 | 1 | -3/+4 |
| | | | | | | | | 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. | ||||
* | Use the plain urlencoded path info for the routing matching | Bart Visscher | 2013-02-27 | 1 | -1/+14 |
| | |||||
* | Whitespace fixes | Bart Visscher | 2013-02-22 | 1 | -1/+1 |
| | |||||
* | Whitespace indent fixes | Bart Visscher | 2013-02-14 | 1 | -2/+2 |
| | |||||
* | add a custom header clients can use to skip a n additional propset request | Jörn Friedrich Dreyer | 2013-02-11 | 1 | -0/+12 |
| | |||||
* | add SSL proxy support | herbrechtsmeier | 2013-01-31 | 1 | -4/+13 |
| | | | | | | | | | 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. | ||||
* | add multiple domains reverse proxy support | Stefan Herbrechtsmeier | 2013-01-31 | 1 | -0/+32 |
| | | | | | | | | | | | | 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. | ||||
* | Whitespace cleanup | Bart Visscher | 2013-01-16 | 1 | -2/+2 |
| | |||||
* | Fix "There must be a single space between the closing parenthesis and the ↵ | Bart Visscher | 2012-12-15 | 1 | -2/+2 |
| | | | | opening brace" | ||||
* | Fix "Line indented incorrectly" | Bart Visscher | 2012-12-15 | 1 | -1/+1 |
| | |||||
* | make it possible to manually override the hostname and protocol if the ↵ | Frank Karlitschek | 2012-11-22 | 1 | -0/+6 |
| | | | | automatic detection from ownCloud fails. This can happen in reverse proxy situations or with loadbalancers setups. | ||||
* | Checkstyle fixes: NoSpaceAfterComma | Felix Moeller | 2012-11-04 | 1 | -2/+2 |
| | |||||
* | adding space between) and { | Thomas Mueller | 2012-09-07 | 1 | -2/+2 |
| | |||||
* | Remove () from return statement | Bart Visscher | 2012-09-04 | 1 | -1/+1 |
| | |||||
* | Decode the alternative path_info | Bart Visscher | 2012-08-07 | 1 | -0/+11 |
| | |||||
* | Move getting the path info to OC_Request | Bart Visscher | 2012-08-07 | 1 | -0/+13 |
| | |||||
* | Add comments the other functions in OC_Request | Bart Visscher | 2012-08-07 | 1 | -0/+8 |
| | |||||
* | Move serverHost and serverProtocol functions to OC_Request | Bart Visscher | 2012-08-07 | 1 | -0/+45 |
| | |||||
* | Fix errors for minimizer | Bart Visscher | 2012-06-18 | 1 | -0/+3 |
| | |||||
* | Cache the minimized output also on the server | Bart Visscher | 2012-06-18 | 1 | -0/+25 |