summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/source/configuringservices.rst4
-rw-r--r--doc/source/middlewarearchitecture.rst10
2 files changed, 7 insertions, 7 deletions
diff --git a/doc/source/configuringservices.rst b/doc/source/configuringservices.rst
index 2a8c1472..17ced552 100644
--- a/doc/source/configuringservices.rst
+++ b/doc/source/configuringservices.rst
@@ -192,7 +192,7 @@ Here is an example paste config filter that makes use of the 'admin_user' and
'admin_password' parameters::
[filter:authtoken]
- paste.filter_factory = keystone.middleware.auth_token:filter_factory
+ paste.filter_factory = keystoneclient.middleware.auth_token:filter_factory
auth_port = 35357
auth_host = 127.0.0.1
auth_token = 012345SECRET99TOKEN012345
@@ -208,7 +208,7 @@ The auth_token middleware can also be configured in nova.conf
parameters::
[filter:authtoken]
- paste.filter_factory = keystone.middleware.auth_token:filter_factory
+ paste.filter_factory = keystoneclient.middleware.auth_token:filter_factory
and in nova.conf::
diff --git a/doc/source/middlewarearchitecture.rst b/doc/source/middlewarearchitecture.rst
index c3f88b15..9224682d 100644
--- a/doc/source/middlewarearchitecture.rst
+++ b/doc/source/middlewarearchitecture.rst
@@ -33,8 +33,8 @@ OpenStack projects based on the WSGI standard.
For the architecture of keystone and its services, please see
:doc:`architecture`. This documentation primarily describes the implementation
-in ``keystone/middleware/auth_token.py``
-(:py:class:`keystone.middleware.auth_token.AuthProtocol`)
+in ``keystoneclient/middleware/auth_token.py``
+(:py:class:`keystoneclient.middleware.auth_token.AuthProtocol`)
Specification Overview
======================
@@ -122,7 +122,7 @@ a WSGI component. Example for the auth_token middleware::
pipeline = tokenauth myService
[filter:tokenauth]
- paste.filter_factory = keystone.middleware.auth_token:filter_factory
+ paste.filter_factory = keystoneclient.middleware.auth_token:filter_factory
auth_host = 127.0.0.1
auth_port = 35357
auth_protocol = http
@@ -143,7 +143,7 @@ config file. For example in Nova, all middleware parameters can be removed
from api-paste.ini::
[filter:authtoken]
- paste.filter_factory = keystone.middleware.auth_token:filter_factory
+ paste.filter_factory = keystoneclient.middleware.auth_token:filter_factory
and set in nova.conf::
@@ -219,7 +219,7 @@ unsuccessful.
Extended the request with additional User Information
-----------------------------------------------------
-:py:class:`keystone.middleware.auth_token.AuthProtocol` extends the request
+:py:class:`keystoneclient.middleware.auth_token.AuthProtocol` extends the request
with additional information if the user has been authenticated.