Skip to content

Commit a5d1b35

Browse files
committed
add a mention of the http/1.1 protocol limitation
and provide instructions for using nginx as a reverse proxy
1 parent b2ed4d7 commit a5d1b35

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 does not currently 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)