From 0f4a0325ca09f7680f21ba3830cfc0eb84802d8c Mon Sep 17 00:00:00 2001 From: "Kevin L. Mitchell" Date: Mon, 25 Jul 2011 16:17:09 -0500 Subject: Document how to allow anonymous access --- examples/paste/glance-api.conf | 3 +++ examples/paste/glance-registry.conf | 3 +++ 2 files changed, 6 insertions(+) diff --git a/examples/paste/glance-api.conf b/examples/paste/glance-api.conf index 551903c5..6b1d8801 100644 --- a/examples/paste/glance-api.conf +++ b/examples/paste/glance-api.conf @@ -84,5 +84,8 @@ auth_port = 5001 auth_protocol = http admin_token = 999888777666 +# Allows anonymous access +delay_auth_decision = 1 + [filter:keystone_shim] paste.filter_factory = keystone.middleware.glance_auth_token:filter_factory diff --git a/examples/paste/glance-registry.conf b/examples/paste/glance-registry.conf index 0ccee384..a66323cd 100644 --- a/examples/paste/glance-registry.conf +++ b/examples/paste/glance-registry.conf @@ -48,5 +48,8 @@ auth_port = 5001 auth_protocol = http admin_token = 999888777666 +# Allows anonymous access +delay_auth_decision = 1 + [filter:keystone_shim] paste.filter_factory = keystone.middleware.glance_auth_token:filter_factory -- cgit