aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorhttps://launchpad.net/~fst <fst@web>2011-10-09 03:16:35 -0400
committeradmin <admin@branchable.com>2011-10-09 03:16:35 -0400
commitad783e5b69b83fa4719ef7ed8d886efbd434a79f (patch)
tree9c3da7d64e56becf0263c9ac2c1cae38a0004feb /doc
parentcfc1d033bde944288b99649a73c0057315cda07a (diff)
downloadikiwiki-ad783e5b69b83fa4719ef7ed8d886efbd434a79f.tar
ikiwiki-ad783e5b69b83fa4719ef7ed8d886efbd434a79f.tar.gz
Diffstat (limited to 'doc')
-rw-r--r--doc/forum/Allow_only_specific_OpenIDs_to_login.mdwn7
1 files changed, 7 insertions, 0 deletions
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
index 000000000..27eb69647
--- /dev/null
+++ b/doc/forum/Allow_only_specific_OpenIDs_to_login.mdwn
@@ -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!