~ziad-sawalha/keystone/trunk

« back to all changes in this revision

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

  • Committer: Brian Lamar
  • Date: 2011-05-24 15:36:52 UTC
  • mto: This revision was merged to the branch mainline in revision 103.
  • Revision ID: git-v1:6fdc83234f821a3b893c92ab496e6170818fefd2
-Removed .project file from project and added it to .gitignore
-Moved pylintrc -> .pylintrc, personal preference that this file should be available, but not seen
-Moved echo to examples directory, seemed a bit odd to be in the top level
-Moved management directory to tools, seemed a bit odd to be in the top level
-Moved pip-requires to tools/, and updated the reference to it in README.md

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
    basicauth
 
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