From db80437af2a7ff0d399051a2c27cced11ba506ef Mon Sep 17 00:00:00 2001 From: Sergio Oliveira Date: Tue, 7 Oct 2014 13:35:30 -0300 Subject: [PATCH] Fixed SITE_URL. Added BROWSERID_AUDIENCES to yaml --- colab/management/initconfig.py | 4 ++++ colab/settings.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/colab/management/initconfig.py b/colab/management/initconfig.py index a8c91c6..bb78484 100644 --- a/colab/management/initconfig.py +++ b/colab/management/initconfig.py @@ -29,6 +29,10 @@ EMAIL_SUBJECT_PREFIX: '[colab]' SECRET_KEY: '{secret_key}' SITE_URL: 'http://www.example.com/' +BROWSERID_AUDIENCES: + - http://example.com + - https://example.org + - http://example.net ALLOWED_HOSTS: - example.com diff --git a/colab/settings.py b/colab/settings.py index e05ff84..5e4bf6c 100644 --- a/colab/settings.py +++ b/colab/settings.py @@ -267,7 +267,7 @@ FEEDZILLA_SITE_DESCRIPTION = _(u'Colab blog aggregator') MAILMAN_API_URL = 'http://localhost:9000' ### BrowserID / Persona -SITE_URL = 'localhost:8000' +SITE_URL = 'http://localhost:8000' BROWSERID_AUDIENCES = [SITE_URL, SITE_URL.replace('https', 'http')] -- libgit2 0.21.2