http, not https

apps.openstack.org doesn't support https currently. Change
the default to http.

Change-Id: Ifdc419cc270bbee16997c67a33074dc0a22b6561
This commit is contained in:
Kevin Fox 2015-08-06 15:43:19 -07:00
parent 028eab6dd6
commit 03b496532f
2 changed files with 2 additions and 2 deletions

View File

@ -7,5 +7,5 @@ class IndexView(views.APIView):
template_name = 'app_catalog/index.html'
def get_data(self, request, context, *args, **kwargs):
context['APP_CATALOG_URL'] = getattr(settings, 'APP_CATALOG_URL', 'https://apps.openstack.org')
context['APP_CATALOG_URL'] = getattr(settings, 'APP_CATALOG_URL', 'http://apps.openstack.org')
return context

View File

@ -7,6 +7,6 @@ class IndexView(views.APIView):
template_name = 'component_catalog/index.html'
def get_data(self, request, context, *args, **kwargs):
context['APP_CATALOG_URL'] = getattr(settings, 'APP_CATALOG_URL', 'https://apps.openstack.org')
context['APP_CATALOG_URL'] = getattr(settings, 'APP_CATALOG_URL', 'http://apps.openstack.org')
return context