From 7931c2d96bc3911fca86f2209f966f48392df89a Mon Sep 17 00:00:00 2001 From: Michael Tofias Date: Tue, 31 Mar 2015 16:34:48 -0500 Subject: [PATCH] Changed docs to explain SSLIFY_XXX style config. --- README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index d85b272..46a9e33 100644 --- a/README.rst +++ b/README.rst @@ -47,7 +47,7 @@ If you'd like to include subdomains in your HSTS policy, set the ``subdomains`` sslify = SSLify(app, subdomains=True) -Or by including ``SSL_SUBDOMAINS`` in your app's config. +Or by including ``SSLIFY_SUBDOMAINS`` in your app's config. HTTP 301 Redirects @@ -58,7 +58,7 @@ by passing the ``permanent`` parameter:: sslify = SSLify(app, permanent=True) -Or by including ``SSL_PERMANENT`` in your app's config. +Or by including ``SSLIFY_PERMANENT`` in your app's config. Exclude Certain Paths from Being Redirected @@ -67,7 +67,7 @@ You can exlude a path that starts with given string by including a list called ` sslify = SSLify(app, skips=['mypath', 'anotherpath']) -Or by including ``SSL_SKIPS`` in your app's config. +Or by including ``SSLIFY_SKIPS`` in your app's config. Install