Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. [plugin:auth_tkt]
  2. use = ckan.lib.auth_tkt:make_plugin
  3. secret = somesecret
  4.  
  5. #[plugin:friendlyform]
  6. #use = repoze.who.plugins.friendlyform:FriendlyFormPlugin
  7. #login_form_url= /user/login
  8. #login_handler_path = /login_generic
  9. #logout_handler_path = /user/logout
  10. #rememberer_name = auth_tkt
  11. #post_login_url = /user/logged_in
  12. #post_logout_url = /user/logged_out
  13. #charset = utf-8
  14.  
  15. #[plugin:basicauth]
  16. #use = repoze.who.plugins.basicauth:make_plugin
  17. #realm = 'CKAN'
  18.  
  19. [plugin:saml2auth]
  20. use = s2repoze.plugins.sp:make_plugin
  21. saml_conf = ckanext.saml2.config.sp_config
  22. remember_name = auth_tkt
  23. sid_store = outstanding
  24. identity_cache = memcached
  25.  
  26. [general]
  27. request_classifier = repoze.who.classifiers:default_request_classifier
  28. challenge_decider = repoze.who.classifiers:default_challenge_decider
  29.  
  30. [identifiers]
  31. plugins =
  32. saml2auth
  33. auth_tkt
  34.  
  35. [authenticators]
  36. plugins =
  37. saml2auth
  38.  
  39. [challengers]
  40. plugins =
  41. saml2auth
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement