diff --git a/roles/fedocal/templates/fedocal.cfg b/roles/fedocal/templates/fedocal.cfg index 903378b126..1d9f303cf5 100644 --- a/roles/fedocal/templates/fedocal.cfg +++ b/roles/fedocal/templates/fedocal.cfg @@ -42,6 +42,10 @@ APPLICATION_ROOT = '/calendar/' {% if env == 'staging' %} APP_URL = 'https://apps.stg.fedoraproject.org/' + APPLICATION_ROOT FAS_OPENID_ENDPOINT = 'https://id.stg.fedoraproject.org/' +SITE_ROOT = 'https://apps.stg.fedoraproject.org' +SITE_URL = '%s/calendar' % SITE_ROOT {% else %} APP_URL = 'https://apps.fedoraproject.org/' + APPLICATION_ROOT +SITE_ROOT = 'https://apps.fedoraproject.org' +SITE_URL = '%s/calendar' % SITE_ROOT {% endif %}