tvdijen/simplesamlphp-module-ldapradius

一个提供对LDAP存储进行身份验证的模块,并附加对RADIUS的MFA

安装: 73

依赖: 0

建议: 0

安全: 0

星标: 0

关注者: 1

分支: 0

类型:simplesamlphp-module

v1.0.7 2024-07-02 09:55 UTC

This package is auto-updated.

Last update: 2024-09-19 21:05:37 UTC


README

联合LDAP / Radius身份验证源

配置

    'LDAPRADIUS' => [
        'ldapRadius:LdapRadius',

        // The primary authsource to deal with username & password
        'primary' => 'LDAP',

        // The secondary authsource to deal with username & OTP
        'primary' => 'RADIUS',

        // Type hint to be enforced by the browser for the username-field
        // Defaults to 'text', possible values are 'text' and 'email'
        'usernameTypeHint' => 'email',

        // The pattern to be enforced by the browser for the username-field
        // Defaults to `null`
        'usernamePattern' => null,

        // The minimum password-length to be enforced on the password-field
        // Defaults to `null`
        'passwordMinLength' => 8,

        // The input mode for the OTP-field. This will select the appropriate keyboard on mobile devices
        // Defaults to `null`
        'otpInputMode' => null,

        // The pattern to be enforced by the browser for the OTP-field
        // Defaults to `null`
        'otpPattern' => null,
    ],