(no commit message)
authorhttps://launchpad.net/~fst <fst@web>
Sun, 9 Oct 2011 07:16:35 +0000 (03:16 -0400)
committeradmin <admin@branchable.com>
Sun, 9 Oct 2011 07:16:35 +0000 (03:16 -0400)
doc/forum/Allow_only_specific_OpenIDs_to_login.mdwn [new file with mode: 0644]

diff --git a/doc/forum/Allow_only_specific_OpenIDs_to_login.mdwn b/doc/forum/Allow_only_specific_OpenIDs_to_login.mdwn
new file mode 100644 (file)
index 0000000..27eb696
--- /dev/null
@@ -0,0 +1,7 @@
+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:
+
+    adminuser => [qw{MY_OPENIDS}],
+    disable_plugins => [qw{passwordauth}],
+    locked_pages => '*',
+
+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!