From 3c3a0c4189888ee6f092964eb28fb96d6c1068b6 Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Tue, 17 Feb 2015 15:56:35 +0000 Subject: [PATCH] use example.com as the default BASE_URL --- wagtail/project_template/project_name/settings/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wagtail/project_template/project_name/settings/base.py b/wagtail/project_template/project_name/settings/base.py index b84cdc937..2af151e58 100644 --- a/wagtail/project_template/project_name/settings/base.py +++ b/wagtail/project_template/project_name/settings/base.py @@ -30,7 +30,7 @@ ALLOWED_HOSTS = [] # Base URL to use when referring to full URLs within the Wagtail admin backend - # e.g. in notification emails. Don't include '/admin' or a trailing slash -BASE_URL = 'http://localhost:8000' +BASE_URL = 'http://example.com' # Application definition