docs: document un-supported HTTP 1.0 in 0.9.0 and higher (#932)

docs: document un-supported HTTP 1.0 in 0.9.0 and higher

Fixes #915

Co-authored-by: Caleb Doxsey <cdoxsey@pomerium.com>
This commit is contained in:
Cuong Manh Le 2020-06-20 01:11:00 +07:00 committed by GitHub
parent dbd7f55b20
commit c29807c391
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,6 +13,23 @@ description: >-
With this release, default log level has been changed to INFO.
### HTTP 1.0
HTTP 1.0 is not supported anymore. If you relied on it make sure to upgrade to HTTP 1.1 or higher.
Example for HAProxy health check, in pre `0.9.0`:
```shell script
option httpchk GET /ping
```
In `0.9.0`:
```shell script
option httpchk GET /ping HTTP/1.1\r\nHost:pomerium
```
# Since 0.8.0
## Breaking