diff options
author | Pierre-Yves Chibon <pingou@pingoured.fr> | 2017-08-29 20:31:28 +0200 |
---|---|---|
committer | Pierre-Yves Chibon <pingou@pingoured.fr> | 2017-08-29 20:31:28 +0200 |
commit | f481de42a376814cdb53f8c5a1212d7296aaaf23 (patch) | |
tree | 252a427cf254cc1f54096cb5330da6d20b2a077b | |
parent | 588a2a3598470887445ebc7f84f77c92836488b3 (diff) | |
download | ansible-f481de42a376814cdb53f8c5a1212d7296aaaf23.tar.gz ansible-f481de42a376814cdb53f8c5a1212d7296aaaf23.tar.xz ansible-f481de42a376814cdb53f8c5a1212d7296aaaf23.zip |
Looks like pagure01 uses the IPv6 address when making API calls to itself, so add it to the list of allowed IP addresses
-rw-r--r-- | roles/pagure/frontend/templates/pagure.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/pagure/frontend/templates/pagure.cfg b/roles/pagure/frontend/templates/pagure.cfg index 317c8d43c..67874c4a0 100644 --- a/roles/pagure/frontend/templates/pagure.cfg +++ b/roles/pagure/frontend/templates/pagure.cfg @@ -73,7 +73,7 @@ GIT_URL_GIT = 'https://pagure.io/' {% if env == 'pagure-staging' %} IP_ALLOWED_INTERNAL = ['127.0.0.1', 'localhost', '::1', '140.211.169.203'] {% else %} -IP_ALLOWED_INTERNAL = ['127.0.0.1', 'localhost', '::1', '140.211.169.204'] +IP_ALLOWED_INTERNAL = ['127.0.0.1', 'localhost', '::1', '140.211.169.204', '2605:bc80:3010:600:dead:beef:cafe:fed8'] {% endif %} # Redis configuration |