Changeset 5039
- Timestamp:
- 26/02/09 10:27:21 (12 years ago)
- Location:
- TI12-security/trunk/python
- Files:
-
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/trunk/python/ndg.security.server/ndg/security/server/wsgi/authn.py
r5037 r5039 58 58 app = AuthNRedirectMiddleware(app, global_conf, **app_conf) 59 59 self._app = authkit.authenticate.middleware(app, app_conf) 60 # super(AuthNMiddleware, self).__init__(app, global_conf, **app_conf)61 60 62 61 def __call__(self, environ, start_response): -
TI12-security/trunk/python/ndg.security.test/ndg/security/test/integration/authz/securedapp.ini
r5037 r5039 9 9 use = egg:Paste#http 10 10 host = 0.0.0.0 11 port = 500011 port = 7080 12 12 13 13 [pipeline:main] -
TI12-security/trunk/python/ndg.security.test/ndg/security/test/integration/openidrelyingparty/README
r5038 r5039 6 6 illustrate a simplified view of the eventual NDG deployment where applications 7 7 will be secured running under a separate stack to security services running 8 under SSL. 8 under SSL. This test tests the security stack with only an OpenID Relying 9 Party in place. No authorisation components are included. 9 10 10 11 An OpenID account with an external OpenID Provider is required in order to run … … 23 24 Start a browser and enter the address: 24 25 25 http://localhost: 7080/26 http://localhost:6080 26 27 27 28 You will be redirected to a page to enter your OpenID. Enter your preferred -
TI12-security/trunk/python/ndg.security.test/ndg/security/test/integration/openidrelyingparty/securedapp.ini
r5038 r5039 17 17 18 18 [app:SecuredApp] 19 paste.app_factory = ndg.security.test.integration. authz.securedapp:TestOpenIDRelyingPartyMiddleware19 paste.app_factory = ndg.security.test.integration.openidrelyingparty.securedapp:TestOpenIDRelyingPartyMiddleware 20 20 21 21 #______________________________________________________________________________
Note: See TracChangeset
for help on using the changeset viewer.