diff --git a/ref-test/common/blueprints.py b/ref-test/common/blueprints.py
index d15e272..4500c2a 100644
--- a/ref-test/common/blueprints.py
+++ b/ref-test/common/blueprints.py
@@ -13,6 +13,8 @@ def _cookies():
value = 'True',
max_age = timedelta(days=14) if request.cookies.get('remember') == 'True' else 'Session',
path = '/',
- expires = datetime.utcnow() + timedelta(days=14) if request.cookies.get('remember') else 'Session'
+ expires = datetime.utcnow() + timedelta(days=14) if request.cookies.get('remember') else 'Session',
+ domain = '.reftest.vsnt.uk',
+ secure = True
)
return resp
\ No newline at end of file
diff --git a/ref-test/main.py b/ref-test/main.py
index 9729e0a..c1f0efe 100644
--- a/ref-test/main.py
+++ b/ref-test/main.py
@@ -8,6 +8,7 @@ from pymongo import MongoClient
from pymongo.errors import ConnectionFailure
from flask_wtf.csrf import CSRFProtect, CSRFError
from flask_mail import Mail
+from werkzeug.middleware.proxy_fix import ProxyFix
from common.security import check_keyfile_exists, generate_keyfile
import config
@@ -70,6 +71,8 @@ def create_app():
Bootstrap(app)
csrf = CSRFProtect(app)
+ app.wsgi_app = ProxyFix(app.wsgi_app, x_proto=1, x_host=1)
+
return app
app = create_app()
diff --git a/ref-test/quiz/templates/quiz/components/og-meta.html b/ref-test/quiz/templates/quiz/components/og-meta.html
index ef31c74..5c63bca 100644
--- a/ref-test/quiz/templates/quiz/components/og-meta.html
+++ b/ref-test/quiz/templates/quiz/components/og-meta.html
@@ -2,12 +2,12 @@
-
+
-
-
+
+