X-Git-Url: https://git.mdrn.pl/fnpdjango.git/blobdiff_plain/5ef0c244216d61308c3b0154186421ddbf801553..03c273afeb9757a77c84827100e72b604e0123fa:/fnpdjango/deploy/templates/localsettings.py.template diff --git a/fnpdjango/deploy/templates/localsettings.py.template b/fnpdjango/deploy/templates/localsettings.py.template index 9a3d04d..3cc3916 100644 --- a/fnpdjango/deploy/templates/localsettings.py.template +++ b/fnpdjango/deploy/templates/localsettings.py.template @@ -1,3 +1,5 @@ +# Review this file and copy it to %(app_path)s/localsettings.py + ADMINS = ( ('Lista IT', 'it@listy.nowoczesnapolska.org.pl'), ) @@ -18,14 +20,16 @@ DATABASES = { SECRET_KEY = '%(secret_key)s' ALLOWED_HOSTS = ( - '%(project_name).nowoczesnapolska.org.pl', + '%(project_name)s.nowoczesnapolska.org.pl', ) -PIWIK_URL = 'http://piwik.nowoczesnapolska.org.pl/' -PIWIK_TOKEN = '' +PIWIK_URL = '//piwik.nowoczesnapolska.org.pl/nocas/' +PIWIK_SITE_ID = -1 MEDIA_ROOT = '%(app_path)s/media/' STATIC_ROOT = '%(app_path)s/static/' -FNPDJANGO_REALIP = False -FNPDJANGO_XACCEL = False + +# Those should be set to True if you are behind Nginx. +FNPDJANGO_REALIP = True +FNPDJANGO_XACCEL = True