diff --git a/README.md b/README.md index f13cbefe..04bd297d 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,10 @@ [![Black Lives Matter](https://iris-go.com/images/blacklivesmatter_banner.png)](https://support.eji.org/give/153413/#!/donation/checkout) - - -# Happy New Year 🎉 - -Thank you for being with us every step of the way in 2020. I hope the next years brings you only good luck and great joy. @@ -36,6 +31,8 @@ With your help, we can improve Open Source web development for everyone! > Donations from **China** are now accepted!
+ + @@ -112,7 +109,7 @@ Venkatt Guhesan" title="vguhesan" with="75" style="width:75px;max-width:75px;hei ```sh $ mkdir myapp $ go mod init myapp -$ go get github.com/kataras/iris/v12@master +$ go get github.com/kataras/iris/v12@master # or @v12.0.0-alpha2 ``` ![](https://www.iris-go.com/images/gifs/install-create-iris.gif) diff --git a/_examples/http-server/listen-letsencrypt/main.go b/_examples/http-server/listen-letsencrypt/main.go index d49be671..6908082b 100644 --- a/_examples/http-server/listen-letsencrypt/main.go +++ b/_examples/http-server/listen-letsencrypt/main.go @@ -36,7 +36,7 @@ func main() { return srv } - app.Run(iris.AutoTLS(":443", "example.com", "mail@example.com", + app.Run(iris.AutoTLS(":443", "example.com myip", "mail@example.com", iris.AutoTLSNoRedirect(fallbackServer))) */ }