~ziad-sawalha/keystone/trunk

« back to all changes in this revision

Viewing changes to examples/echo/echo/echo.ini

  • Committer: Ziad Sawalha
  • Date: 2011-05-26 01:24:05 UTC
  • mfrom: (87.5.8)
  • Revision ID: git-v1:b0d12a558f590a501a42afd1283148961563920e
Merge pull request 53

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
[DEFAULT]
 
2
;delegated means we still allow unauthenticated requests through so the
 
3
;service can make the final decision on authentication
 
4
delay_auth_decision = 0
 
5
 
 
6
;where to find the OpenStack service (if not in local WSGI chain)
 
7
service_protocol = http
 
8
service_host = 127.0.0.1
 
9
service_port = 8081
 
10
;used to verify this component with the OpenStack service (or PAPIAuth)
 
11
service_pass = dTpw
 
12
 
 
13
 
 
14
[app:echo]
 
15
paste.app_factory = echo:app_factory
 
16
 
 
17
[pipeline:main]
 
18
pipeline =
 
19
    tokenauth
 
20
    echo
 
21
 
 
22
[filter:tokenauth]
 
23
paste.filter_factory = keystone.auth_protocols.auth_token:filter_factory
 
24
;where to find the token auth service
 
25
auth_host = 127.0.0.1
 
26
auth_port = 8081
 
27
auth_protocol = http
 
28
;how to authenticate to the auth service for priviledged operations
 
29
;like validate token
 
30
admin_token = 999888777666
 
31
 
 
32
[filter:basicauth]
 
33
paste.filter_factory = keystone.auth_protocols.auth_basic:filter_factory
 
34
 
 
35
[filter:openidauth]
 
36
paste.filter_factory = keystone.auth_protocols.auth_openid:filter_factory