From 8e71bbbf1b0c1319b2a799f0b70e47e6657bb42a Mon Sep 17 00:00:00 2001 From: Justin Sherrill Date: Fri, 4 Sep 2020 12:37:49 -0400 Subject: [PATCH] Refs #30780 - set proper content origin setting CONTENT_ORIGIN needs to be poitned at https:// for the /pulp/container/ redirect to work properly --- templates/settings.py.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/settings.py.erb b/templates/settings.py.erb index cd6d862a..a8f6dc32 100644 --- a/templates/settings.py.erb +++ b/templates/settings.py.erb @@ -1,5 +1,5 @@ CONTENT_HOST = "<%= scope['pulpcore::servername'] %>" -CONTENT_ORIGIN = "http://<%= scope['pulpcore::servername'] %>" +CONTENT_ORIGIN = "https://<%= scope['pulpcore::servername'] %>" SECRET_KEY = "<%= scope['pulpcore::django_secret_key'] %>" DATABASES = { 'default': {