source: extensions/net.sf.basedb.yubikey/trunk/yubikey.properties

Last change on this file was 5184, checked in by Nicklas Nordborg, 5 years ago

References #1092: Detect configuration changes automatically

Added boolean parameter to getConfig() method in case we don't always want to check the config file.

File size: 1.6 KB
Line 
1#
2# You need to register with Yubico and get a CLIENT_ID and CLIENT_KEY
3# in order to use the YubiCloud validation service.
4# Go to
5#
6#         https://upgrade.yubico.com/getapikey/
7#
8# and follow the instructions. Fill in the client id and key in this file
9# and place it in the WEB-INF/classes directory of your BASE installation
10# Modifications are detected and reloaded automatically without
11# restarting the server.
12
13client-id =
14client-key  =
15
16## Comma- or whitespace separated list of application ids
17## that should NOT use YubiKey for login. For example,
18## it is recommended that YubiKey is disabled for the
19## FTP Server extension if that is installed
20# no-yubikey = net.sf.basedb.clients.ftp
21
22## Comma- or whitespace separated list of applications ids
23## that MUST use YubiKey for login. Users accounts that
24## have not been assigned a YubiKey will not be able to
25## login with the clients (not even the ROOT user!).
26# require-yubikey = net.sf.basedb.clients.web
27
28## Comma- or whitespace separated list of other authentication
29## methods that are allowed even if a user account has been
30## configured to login with YubiKey. If not specified,
31## user accounts that have been assigned a YubiKey MUST use
32## the YubiKey. This setting doesn't affect user accounts without
33## a YubiKey.
34## For example: use 'password' to allow users to login with regular
35## username and password, or use '*' as a wildcard to allow all
36## other authentication methods. Note that this setting doesn't
37## override the 'no-yubikey' or 'require-yubikey' settings.
38# allow-other-authentication =
Note: See TracBrowser for help on using the repository browser.