Skip to content

Commit 29aa705

Browse files
committed
updated the README
1 parent 5aea60d commit 29aa705

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
HTTPSify <small>v3</small>
1+
HTTPSify <small>v3.1</small>
22
=============================
3-
A `Let'sEncrypt` based reverse proxy, that will automatically generate &amp; renew valid `ssl` certs for your domains, it also enables the `http/2` protocol by default, and uses `roundrobin` as an algorithm to loadbalance the incoming requests between multiple `upstreams`
3+
A `Let'sEncrypt` based reverse proxy, that will automatically generate &amp; renew valid `ssl` certs for your domains, it also enables the `http/2` protocol by default, and uses `roundrobin` as an algorithm to loadbalance the incoming requests between multiple `upstreams`, as well as redirecting the traffic from `http` traffic to `https` just if you enabled the flag `--redirect`.
4+
5+
NOTES
6+
=======
7+
> HTTPSify only supports `http-01` challenge because [Let's Encrypt disables TLS-SNI-01 validation](http://www.zdnet.com/article/lets-encrypt-disables-tls-sni-01-validation/)
48
59
# Quick Start
610

@@ -20,7 +24,7 @@ $ go get -u github.com/alash3al/httpsify
2024
> Goto your `$HOME` Directory and edit the `hosts.json` to something like this
2125
```json
2226
{
23-
"example1.com": ["http://localhost"],
27+
"example1.com": ["http://localhost:9080"],
2428
"example2.com": ["http://localhost:8080", "http://localhost:8081"]
2529
}
2630
```

main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ func main() {
1717
WatchChanges()
1818
}()
1919

20+
colorize(color.FgGreen, "⇛ Running the HTTP server on address ("+*HTTP_ADDR+") ...")
2021
colorize(color.FgGreen, "⇛ Running the HTTPS (HTTP/2) server on address ("+*HTTPS_ADDR+") ...")
2122
colorize(color.FgRed, InitServer())
2223
}

0 commit comments

Comments
 (0)