2015-06-17 08:11:44 +00:00
|
|
|
[DEFAULT]
|
|
|
|
debug = {{ keystone_logging_debug }}
|
2016-02-11 14:34:45 +00:00
|
|
|
|
|
|
|
# NOTE(elemoine) log_dir alone does not work for Keystone
|
|
|
|
log_file = /var/log/kolla/keystone/keystone.log
|
2015-06-17 08:11:44 +00:00
|
|
|
|
2016-02-29 18:51:11 +00:00
|
|
|
secure_proxy_ssl_header = HTTP_X_FORWARDED_PROTO
|
|
|
|
|
2015-06-17 08:11:44 +00:00
|
|
|
[database]
|
2015-12-21 16:16:25 +00:00
|
|
|
connection = mysql+pymysql://{{ keystone_database_user }}:{{ keystone_database_password }}@{{ keystone_database_address }}/{{ keystone_database_name }}
|
2016-04-06 20:45:17 +00:00
|
|
|
max_retries = -1
|
2016-03-19 16:42:26 +00:00
|
|
|
|
|
|
|
[cache]
|
|
|
|
backend = oslo_cache.memcache_pool
|
|
|
|
enabled = True
|
|
|
|
memcache_servers = {% for host in groups['memcached'] %}{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %}
|