diff --git a/HISTORY.md b/HISTORY.md index 765f214193..3e5d01a30d 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -29,7 +29,7 @@ Not any new features or fixes (all reported bugs are fixed) in this version, jus > Remember: If you don't want to keep the version checker and you're pretty sure that you will be able to keep your server up-to-date manually, then you can disable the auto updater via; `app.Run(..., iris.WithoutVersionChecker)`. -## We need your help with translations into your native language. +## We need your help with translations into your native language Iris needs your help, please think about contributing to the translation of the [README](README.md) and https://iris-go.com, you will be rewarded. diff --git a/README.md b/README.md index 0b0d1e2d63..f5b6728edf 100644 --- a/README.md +++ b/README.md @@ -1034,7 +1034,15 @@ The author of Iris is [@kataras](https://github.com/kataras), you can reach him [List of all Contributors](https://github.com/kataras/iris/graphs/contributors) -Help this project to continue deliver awesome and unique features with the higher code quality as possible by donating any amount via [PayPal](https://www.paypal.me/kataras) or [BTC](https://iris-go.com/v8/donate)! +Help this project to continue deliver awesome and unique features with the higher code quality as possible by donating any amount via [PayPal](https://www.paypal.me/kataras) or [BTC](https://iris-go.com/v8/donate). + +For more information about contributing to the Iris project please check the [CONTRIBUTING.md file](CONTRIBUTING.md). + +### We need your help with translations into your native language + +Iris needs your help, please think about contributing to the translation of the [README](README.md) and https://iris-go.com, you will be rewarded. + +Instructions can be found at: https://github.com/kataras/iris/issues/796 ### 03, October 2017 | Iris User Experience Report diff --git a/core/host/proxy_test.go b/core/host/proxy_test.go index 8c4b492167..b7ad878e07 100644 --- a/core/host/proxy_test.go +++ b/core/host/proxy_test.go @@ -24,14 +24,6 @@ func TestProxy(t *testing.T) { t.Fatalf("%v while parsing url", err) } - // p := host.ProxyHandler(u) - // transport := &http.Transport{ - // TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, - // } - // p.Transport = transport - // proxySrv.Downgrade(p.ServeHTTP) - // go proxySrv.Run(iris.Addr(":80"), iris.WithoutBanner, iris.WithoutInterruptHandler) - proxy := host.NewProxy("", u) addr := &net.TCPAddr{ @@ -68,7 +60,7 @@ func TestProxy(t *testing.T) { t.Fatalf("%v while creating tcp4 listener for new tls local test listener", err) } // main server - go app.Run(iris.Listener(httptest.NewLocalTLSListener(l)), iris.WithoutBanner) + go app.Run(iris.Listener(httptest.NewLocalTLSListener(l)), iris.WithoutVersionChecker, iris.WithoutStartupLog) e := httptest.NewInsecure(t, httptest.URL("http://"+listener.Addr().String())) e.GET("/").Expect().Status(iris.StatusOK).Body().Equal(expectedIndex)