]> sipb.mit.edu Git - ikiwiki.git/blob - doc/forum/Allow_only_specific_OpenIDs_to_login.mdwn
(no commit message)
[ikiwiki.git] / doc / forum / Allow_only_specific_OpenIDs_to_login.mdwn
1 How do I allow only specific OpenIDs to log in to ikiwiki? I found a way to only allow edits from specific OpenIDs, but I would like to restrict the logins and not the edits. Currently I've disabled the passwordauth plugin, locked all pages, and set the allowed OpenIDs as adminuser:
2
3     adminuser => [qw{MY_OPENIDS}],
4     disable_plugins => [qw{passwordauth}],
5     locked_pages => '*',
6
7 The problem with this solution is that every OpenID that logs in is saved in ikiwiki's `userdb` file, which I'd like to avoid. Pointers to the documentation or a sample setup are very welcome. Thanks!