mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-06-19 10:36:26 +00:00
Adds LDAP auth support
This commit is contained in:
@ -37,6 +37,27 @@ INSERT INTO `setting` (
|
||||
"default-site",
|
||||
"What to show users who hit your Nginx server by default",
|
||||
'"welcome"' -- remember this is json
|
||||
),
|
||||
(
|
||||
ROUND(UNIX_TIMESTAMP(CURTIME(4)) * 1000),
|
||||
ROUND(UNIX_TIMESTAMP(CURTIME(4)) * 1000),
|
||||
"auth-methods",
|
||||
"Which methods are enabled for authentication",
|
||||
'["local"]' -- remember this is json
|
||||
),
|
||||
(
|
||||
ROUND(UNIX_TIMESTAMP(CURTIME(4)) * 1000),
|
||||
ROUND(UNIX_TIMESTAMP(CURTIME(4)) * 1000),
|
||||
"oidc-auth",
|
||||
"Configuration for OIDC authentication",
|
||||
'{}' -- remember this is json
|
||||
),
|
||||
(
|
||||
ROUND(UNIX_TIMESTAMP(CURTIME(4)) * 1000),
|
||||
ROUND(UNIX_TIMESTAMP(CURTIME(4)) * 1000),
|
||||
"ldap-auth",
|
||||
"Configuration for LDAP authentication",
|
||||
'{"host": "", "dn": "", "sync_by": "uid"}' -- remember this is json
|
||||
);
|
||||
|
||||
-- Default Certificate Authorities
|
||||
|
Reference in New Issue
Block a user