Adjust the pagure playbook for 0.2 with the eventsource server

This commit is contained in:
Pierre-Yves Chibon 2015-06-16 11:55:37 +02:00
parent 3895be761b
commit 7c9ca85814
2 changed files with 10 additions and 0 deletions

View file

@ -6,7 +6,9 @@
with_items:
- pagure
- pagure-milters
- pagure-ev
- python-psycopg2
- redis
- libsemanage-python
- mod_ssl
tags:
@ -253,6 +255,8 @@
- httpd
- postfix
- pagure_milter
- redis
- pagure_ev
ignore_errors: true
tags:
- pagure

View file

@ -57,6 +57,12 @@ IP_ALLOWED_INTERNAL = ['127.0.0.1', 'localhost', '::1', '140.211.169.203']
IP_ALLOWED_INTERNAL = ['127.0.0.1', 'localhost', '::1', '140.211.169.204']
{% endif %}
# Redis configuration
EVENTSOURCE_SOURCE = 'http://0.0.0.0:8080'
REDIS_HOST = '0.0.0.0'
REDIS_PORT = 6379
REDIS_DB = 0
### Folder containing to the git repos
GIT_FOLDER = '/srv/git/repositories'