cb2e06556d
Currently, my swift installation fails with the following error message: [Errno 13] Permission denied: '/root/keystone-signing and the proxy server can never service requests. This is b/c by default the client side directory for pki-signing seems to use $HOME. This commits sets the directory to be /var/cache/swift/ and resolves my swift-proxy issues. Change-Id: Ice904a9d53432ba1a1ae9516cd0ee6204ade63bb
21 lines
606 B
Plaintext
21 lines
606 B
Plaintext
[filter:authtoken]
|
|
signing_dir=/var/cache/swift
|
|
paste.filter_factory = keystoneclient.middleware.auth_token:filter_factory
|
|
auth_host = <%= @auth_host %>
|
|
auth_port = <%= @auth_port %>
|
|
auth_protocol = <%= @auth_protocol %>
|
|
<% if @auth_admin_prefix -%>
|
|
auth_admin_prefix = <%= @auth_admin_prefix %>
|
|
<% end -%>
|
|
auth_uri = <%= @auth_uri_real %>
|
|
# if its defined
|
|
<% if @admin_token -%>
|
|
admin_token = <%= @admin_token %>
|
|
<% else -%>
|
|
admin_tenant_name = <%= @admin_tenant_name %>
|
|
admin_user = <%= @admin_user %>
|
|
admin_password = <%= @admin_password %>
|
|
<% end -%>
|
|
delay_auth_decision = <%= @delay_auth_decision %>
|
|
|