From 21eee99970a3dca63eac614839b627e86fa74db9 Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Sun, 10 Jan 2021 11:51:49 +0200 Subject: [PATCH] thanks @rsousacode and @carlos-enginner for your donations :heart: please check your GitHub notifications, you've been invited to the iris-premium repository --- README.md | 11 ++++------- _examples/http-server/listen-letsencrypt/main.go | 2 +- 2 files changed, 5 insertions(+), 8 deletions(-) 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!

+ Rui + Carlos Augusto Horst Ender Pavithran MULYAWAN SENTOSA @@ -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))) */ }