diff --git a/roles/pagure/templates/pagure.cfg b/roles/pagure/templates/pagure.cfg index 6c4d8b80e4..fd0e663f3d 100644 --- a/roles/pagure/templates/pagure.cfg +++ b/roles/pagure/templates/pagure.cfg @@ -26,14 +26,14 @@ SMTP_SERVER = 'localhost' ### Email used to sent emails {% if env == 'staging' %} -APP_URL = 'https://dev.pagure.io/' +FROM_EMAIL = 'pagure@stg.pagure.io' {% else %} -FROM_EMAIL = 'pagure@dev.pagure.io' +FROM_EMAIL = 'pagure@pagure.io' {% endif %} ### The URL at which the project is available. {% if env == 'staging' %} -APP_URL = 'https://dev.pagure.io/' +APP_URL = 'https://stg.pagure.io/' {% else %} APP_URL = 'https://pagure.io/' {% endif %}