From ec6439a54e45756035512d2737efccf2924903ba Mon Sep 17 00:00:00 2001 From: Bjoern Teipel Date: Fri, 4 Mar 2016 16:46:02 -0600 Subject: [PATCH] Fix auth_url for swift configuration This fix configures the auth_url parameter to use keystone_service_adminurl over the existing keystone_service_adminuri parameter which actually leads to a incomplete URL lacking the API version like /v3/tokens Change-Id: I46f2ab7cbdb579dda5d019c29950af7e8c974bea Related-Bug: #1552394 --- templates/proxy-server.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/proxy-server.conf.j2 b/templates/proxy-server.conf.j2 index 5fbcb730..0f559e69 100644 --- a/templates/proxy-server.conf.j2 +++ b/templates/proxy-server.conf.j2 @@ -79,7 +79,7 @@ user_test_tester3 = testing3 [filter:authtoken] paste.filter_factory = keystonemiddleware.auth_token:filter_factory auth_plugin = {{ swift_keystone_auth_plugin }} -auth_url = {{ keystone_service_adminuri }} +auth_url = {{ keystone_service_adminurl }} auth_uri = {{ keystone_service_internaluri }} insecure = {{ keystone_service_adminuri_insecure | bool }} project_domain_id = {{ swift_service_project_domain_id }}