Files
masakari/etc/masakari/masakari.conf
Vu Cong Tuan 1c0b3d0ce7 Update "auth_url"
Following the change in Keystone Install Guide [1],
this patch replace port 35357 with 5000 for "auth_url".

For more details, please check similar changes which have been done
on other projects: Nova [2], Neutron [3], Cinder [4], Glance [5].

In addition, update deprecated "auth_uri" to "www_authenticate_uri",
according to [6].

[1] https://review.openstack.org/#/c/541857
[2] https://review.openstack.org/#/c/562812
[3] https://review.openstack.org/#/c/566491
[4] https://review.openstack.org/#/c/565464
[5] https://review.openstack.org/#/c/558932
[6] https://review.openstack.org/#/c/508522

Change-Id: I262c3b75f98e3ae85b913a5086c3c5ff5edba8f9
2018-05-11 10:29:45 +07:00

27 lines
650 B
Plaintext

[DEFAULT]
enabled_apis = masakari_api
# Enable to specify listening IP other than default
masakari_api_listen = 127.0.0.1
# Enable to specify port other than default
#masakari_api_listen_port = 15868
debug = False
auth_strategy=keystone
[wsgi]
# The paste configuration file path
api_paste_config = /etc/masakari/api-paste.ini
[keystone_authtoken]
www_authenticate_uri = http://127.0.0.1:5000
auth_url = http://127.0.0.1:5000
auth_type = password
project_domain_id = default
user_domain_id = default
project_name = service
username = masakari
password = masakari
[database]
connection = mysql+pymysql://root:admin@127.0.0.1/masakari?charset=utf8