summaryrefslogtreecommitdiff
path: root/service/http
AgeCommit message (Collapse)Author
2020-05-23re-release 1.8.1Valery Piashchynski
2020-05-23update h2c_test, add backoffValery Piashchynski
2020-05-23Merge #323bors[bot]
323: Add RootCA support r=48d90782 a=48d90782 This PR adds RootCA support by the RR Co-authored-by: Valery Piashchynski <[email protected]>
2020-05-20fix test failingsValery Piashchynski
2020-05-19Merge remote-tracking branch 'origin/master'Wolfy-J
2020-05-19- sample configWolfy-J
2020-05-18fix NPEValery Piashchynski
2020-05-16update RootCAValery Piashchynski
2020-05-10Add comment and update according code reviewValery Piashchynski
2020-05-07fix perfomance issueMichaelKo
2020-05-07Add support of CF-Connecting-IPMichaelKo
2020-05-07Add support of CloudFlare True-Client-IP headerMichaelKo
2020-04-17remove windows check from sockets testsValery Piashchynski
2020-03-26http tests with backoffValery Piashchynski
2020-03-21Update GHA, go1.14 vendored modeValery Piashchynski
Update Makefile, add go vendor (go 1.14 + php hack) Update usage of new json package
2020-03-20Replace std json package with github.com/json-iterator/goValery Piashchynski
2020-03-08fix bug with totally frozed rrValery Piashchynski
2020-03-03ssl defers updateValery Piashchynski
2020-03-03Remove redundant codeValery Piashchynski
2020-03-03Fix typosValery Piashchynski
Update signals handling mechanism http proper stopping
2020-02-28rotate portsValery Piashchynski
2020-02-28port rotationValery Piashchynski
2020-02-28ssl ports rotateValery Piashchynski
2020-02-28ssl_test ports updateValery Piashchynski
2020-02-28Test_SSL_Service_Redirect updateValery Piashchynski
2020-02-28Resolve test issuesValery Piashchynski
2020-02-28Set different ports for each testcaseValery Piashchynski
2020-02-28Test_RPC updateValery Piashchynski
2020-02-28Test_FCGI_Service updateValery Piashchynski
2020-02-28Move c.Stop() to end of function, since that goroutine can start afterValery Piashchynski
c.Stop() (there is no order)
2020-02-28Test_RPC_Unix updateValery Piashchynski
2020-02-28Test_Service_Echo remove defersValery Piashchynski
2020-02-28H2C test updateValery Piashchynski
2020-02-07Update README.md (remove travis, replace with github actions)Valery Piashchynski
Fix innefectual usage of maps Update headers (canonical usage) Add golangci-lint check to github actions and go 1.13
2020-01-27stabilize unhealthy testmarliotto
2020-01-27fix REQUEST_URI for requests through FastCGImarliotto
2019-12-23- bump the minimum TLS version to TLS 1.2Wolfy-J
- added `Strict-Transport-Security` header for TLS requests
2019-12-23Merge branch 'master' into Fix_warning_and_issuesAnton Titov
2019-12-23- test fixesWolfy-J
2019-12-23Merge pull request #204 from spiral/feature/hotreloadAnton Titov
[wip] Hot-reloading capabilities - review wanted
2019-11-25Merge remote-tracking branch 'remotes/upstream/master' into ↵Valery Piashchynski
Fix_warning_and_issues # Conflicts: # service/http/response.go
2019-11-25Replace regular expression with strings.Split()Garry Filakhtov
Originally, a regular expression was used to split and trim multiple comma-separated header names from "Trailer" header. This commit replaces regular expression with strings.Split() to break string into parts and then trims spaces and tabs from individual header names.
2019-11-23Provide support for HTTP/2 trailersGarry Filakhtov
Neither PHP nor PSR-7 do not natively support HTTP trailers. Golang provides support and this commit enables trailers emulation. When PHP sends a "Trailer" header in response, supplying a comma separated list of headers they will be converted by RoadRunner to HTTP/2 trailers.
2019-11-17finish the checkValery Piashchynski
2019-11-17complete halfValery Piashchynski
2019-11-03- the ability to set custom command producer for roadrunnerWolfy-J
- minor improvements in metrics service - List() function for Container to receive names of all available services
2019-09-29handle body content on http GET methodMoein Pakkhesal
2019-09-06golint and go fmtWolfy-J
2019-09-06- bugfix: proper proxy IP validation + CSWolfy-J
2019-09-01Add case in testSmolyakov