From 287494ee75529f9bb092338b562a3b7f69f4c03b Mon Sep 17 00:00:00 2001 From: Drew Larson Date: Thu, 19 Jan 2017 20:15:28 -0600 Subject: [PATCH 1/3] Bring back ssl. --- docker/nginx/conf/nginx-site.conf | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docker/nginx/conf/nginx-site.conf b/docker/nginx/conf/nginx-site.conf index e59da90..06b13b3 100644 --- a/docker/nginx/conf/nginx-site.conf +++ b/docker/nginx/conf/nginx-site.conf @@ -1,4 +1,4 @@ - server { +server { listen 80; server_name www.shop.bcbc.bike; # $scheme will get the http protocol @@ -11,9 +11,11 @@ server { # $scheme will get the http protocol # and 301 is best practice for tablet, phone, desktop and seo return 301 https://shop.bcbc.bike$request_uri; -} + } server { +# resolver 127.0.0.11 ipv6=off; listen 443 ssl; +# listen 80; server_name shop.bcbc.bike; ssl_certificate /etc/letsencrypt/live/shop.bcbc.bike/fullchain.pem; From f50f2293cac0f419a9c005f8c8b9f78f4dceb4d6 Mon Sep 17 00:00:00 2001 From: Drew Larson Date: Sat, 21 Jan 2017 08:54:02 -0600 Subject: [PATCH 2/3] Missing dependency. --- bikeshop_project/core/templates/membership_form.html | 1 + bikeshop_project/registration/templates/member_form.html | 1 + 2 files changed, 2 insertions(+) diff --git a/bikeshop_project/core/templates/membership_form.html b/bikeshop_project/core/templates/membership_form.html index 7998cf7..506206a 100644 --- a/bikeshop_project/core/templates/membership_form.html +++ b/bikeshop_project/core/templates/membership_form.html @@ -152,6 +152,7 @@ {% block scripts %} + +