From 8619d3c3a2b9d5196aa3fa4ef3b980f13b4abce8 Mon Sep 17 00:00:00 2001 From: Kamil Kisiel Date: Fri, 12 Oct 2018 08:33:09 -0700 Subject: [PATCH] README.md: Update site URL --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 12dd18a..22b13d9 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ And finally we call `session.Save()` to save the session in the response. Important Note: If you aren't using gorilla/mux, you need to wrap your handlers with -[`context.ClearHandler`](http://www.gorillatoolkit.org/pkg/context#ClearHandler) +[`context.ClearHandler`](https://www.gorillatoolkit.org/pkg/context#ClearHandler) or else you will leak memory! An easy way to do this is to wrap the top-level mux when calling http.ListenAndServe: @@ -64,7 +64,7 @@ mux when calling http.ListenAndServe: The ClearHandler function is provided by the gorilla/context package. More examples are available [on the Gorilla -website](http://www.gorillatoolkit.org/pkg/sessions). +website](https://www.gorillatoolkit.org/pkg/sessions). ## Store Implementations