diff options
| author | Ziad Sawalha <ziad.sawalha@rackspace.com> | 2011-07-25 14:26:35 -0700 |
|---|---|---|
| committer | Ziad Sawalha <ziad.sawalha@rackspace.com> | 2011-07-25 14:26:35 -0700 |
| commit | ca5efebfd395b3e2c7ebbf3a3a4a7f45c0ad1746 (patch) | |
| tree | e3e4324270e4c1605a8514c0cc3cc16d718a5639 | |
| parent | f0f84ef6bdd0ede6d63e6516cc6ec982e07bdeb2 (diff) | |
| parent | f408062c91501315f73cab9c9a4cc28ea9cba83f (diff) | |
| download | keystone-ca5efebfd395b3e2c7ebbf3a3a4a7f45c0ad1746.tar.gz keystone-ca5efebfd395b3e2c7ebbf3a3a4a7f45c0ad1746.tar.xz keystone-ca5efebfd395b3e2c7ebbf3a3a4a7f45c0ad1746.zip | |
Merge pull request #121 from klmitch/master
Document anonymous access for glance
| -rw-r--r-- | examples/paste/glance-api.conf | 3 | ||||
| -rw-r--r-- | examples/paste/glance-registry.conf | 3 |
2 files changed, 6 insertions, 0 deletions
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 |
