From 6efaf70c98ddc37caab408a2d2953b15cdbbe283 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Thu, 12 Oct 2017 12:13:20 +0200 Subject: [PATCH] Fix IP allowed in the internal endpoints Signed-off-by: Pierre-Yves Chibon --- roles/distgit/pagure/templates/pagure.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/distgit/pagure/templates/pagure.cfg b/roles/distgit/pagure/templates/pagure.cfg index 958b77b7ac..eb8b2cf165 100644 --- a/roles/distgit/pagure/templates/pagure.cfg +++ b/roles/distgit/pagure/templates/pagure.cfg @@ -72,7 +72,7 @@ GIT_URL_GIT = 'https://src.fedoraproject.org/' ### The IP addresses allowed for the internal endpoints {% if env == 'staging' %} -IP_ALLOWED_INTERNAL = ['127.0.0.1', 'localhost', '::1', '140.211.169.203'] +IP_ALLOWED_INTERNAL = ['127.0.0.1', 'localhost', '::1', '10.5.128.177'] {% else %} IP_ALLOWED_INTERNAL = ['127.0.0.1', 'localhost', '::1', '10.5.126.51'] {% endif %}