Skip to content

Commit 4c29f5c

Browse files
authored
Merge pull request #467 from jbr/document-http-1.1-requirement
📖 add a mention of the http/1.1 protocol limitation
2 parents 5d9398a + f1d487f commit 4c29f5c

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,19 @@ $ cargo run --example # shows a list of available examples
7373
$ cargo run --example hello
7474
```
7575

76+
## TLS termination and reverse proxies
77+
78+
Tide's default backend currently does not support TLS, and only supports HTTP/1.1.
79+
80+
### To use with nginx
81+
82+
In order to use nginx as reverse proxy for Tide, your upstream proxy configuration must include this line:
83+
84+
```
85+
proxy_http_version 1.1;
86+
```
87+
88+
7689
## Resources
7790

7891
Read about the design here:

0 commit comments

Comments
 (0)