README.rst 866 B

1234567891011121314151617181920212223242526272829303132333435
  1. .. _openid-chapter:
  2. ===================
  3. openid plugin
  4. ===================
  5. The openid plugin allows user to login to your GNU Mediagoblin instance using
  6. their openid url.
  7. This plugin can be enabled alongside :ref:`basic_auth-chapter` and
  8. :ref:`persona-chapter`.
  9. .. note::
  10. When :ref:`basic_auth-chapter` is enabled alongside this openid plugin, and
  11. a user creates an account using their openid. If they would like to add a
  12. password to their account, they can use the forgot password feature to do
  13. so.
  14. Set up the openid plugin
  15. ============================
  16. 1. Install the ``python-openid`` package.
  17. 2. Add the following to your MediaGoblin .ini file in the ``[plugins]`` section::
  18. [[mediagoblin.plugins.openid]]
  19. 3. Run::
  20. gmg dbupdate
  21. in order to create and apply migrations to any database tables that the
  22. plugin requires.