mirror of
https://github.com/minio/minio.git
synced 2025-02-04 10:26:01 -05:00
Fix errors in ldap doc (#8374)
This commit is contained in:
parent
36e12a6038
commit
c566cc6b61
@ -47,10 +47,11 @@ LDAP is configured via the following environment variables:
|
|||||||
| **MINIO_IDENTITY_LDAP_GROUP_SEARCH_BASE_DN** | **NO** | Base DN in AD/LDAP hierarchy to use in search requests |
|
| **MINIO_IDENTITY_LDAP_GROUP_SEARCH_BASE_DN** | **NO** | Base DN in AD/LDAP hierarchy to use in search requests |
|
||||||
| **MINIO_IDENTITY_LDAP_GROUP_SEARCH_FILTER** | **NO** | Search filter to find groups of a user |
|
| **MINIO_IDENTITY_LDAP_GROUP_SEARCH_FILTER** | **NO** | Search filter to find groups of a user |
|
||||||
| **MINIO_IDENTITY_LDAP_GROUP_NAME_ATTRIBUTE** | **NO** | Attribute of search results to use as group name |
|
| **MINIO_IDENTITY_LDAP_GROUP_NAME_ATTRIBUTE** | **NO** | Attribute of search results to use as group name |
|
||||||
| **MINIO_IDENTITY_LDAP_STS_EXPIRY_DURATION** | **NO** (default: "1h") | STS credentials validity duration |
|
| **MINIO_IDENTITY_LDAP_STS_EXPIRY** | **NO** (default: "1h") | STS credentials validity duration |
|
||||||
| **MINIO_IDENTITY_LDAP_TLS_SKIP_VERIFY** | **NO** (default: "false") | Disable TLS certificate verification |
|
|
||||||
|
|
||||||
Please note that MinIO will only access the AD/LDAP server over TLS. An example setup for development or experimentation:
|
Please note that MinIO will only access the AD/LDAP server over TLS. If a self-signed certificate is being used, the certificate can be added to MinIO's certificates directory, so it can be trusted by the server.
|
||||||
|
|
||||||
|
An example setup for development or experimentation:
|
||||||
|
|
||||||
``` shell
|
``` shell
|
||||||
export MINIO_IDENTITY_LDAP_SERVER_ADDR=myldapserver.com:636
|
export MINIO_IDENTITY_LDAP_SERVER_ADDR=myldapserver.com:636
|
||||||
@ -58,8 +59,7 @@ export MINIO_IDENTITY_LDAP_USERNAME_FORMAT="uid=${username},cn=accounts,dc=mylda
|
|||||||
export MINIO_IDENTITY_LDAP_GROUP_SEARCH_BASE_DN="dc=myldapserver,dc=com"
|
export MINIO_IDENTITY_LDAP_GROUP_SEARCH_BASE_DN="dc=myldapserver,dc=com"
|
||||||
export MINIO_IDENTITY_LDAP_GROUP_SEARCH_FILTER="(&(objectclass=groupOfNames)(member=${usernamedn}))"
|
export MINIO_IDENTITY_LDAP_GROUP_SEARCH_FILTER="(&(objectclass=groupOfNames)(member=${usernamedn}))"
|
||||||
export MINIO_IDENTITY_LDAP_GROUP_NAME_ATTRIBUTE="cn"
|
export MINIO_IDENTITY_LDAP_GROUP_NAME_ATTRIBUTE="cn"
|
||||||
export MINIO_IDENTITY_LDAP_STS_EXPIRY_DURATION=60
|
export MINIO_IDENTITY_LDAP_STS_EXPIRY=60
|
||||||
export MINIO_IDENTITY_LDAP_TLS_SKIP_VERIFY=true
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Variable substitution in AD/LDAP configuration strings
|
### Variable substitution in AD/LDAP configuration strings
|
||||||
|
Loading…
x
Reference in New Issue
Block a user