|
176 | 176 |
|
177 | 177 | ],
|
178 | 178 |
|
| 179 | + 'passwords' => [ |
| 180 | + |
| 181 | + /* |
| 182 | + |-------------------------------------------------------------------------- |
| 183 | + | Password Sync |
| 184 | + |-------------------------------------------------------------------------- |
| 185 | + | |
| 186 | + | The password sync option allows you to automatically synchronize |
| 187 | + | users AD passwords to your local database. These passwords are |
| 188 | + | hashed natively by laravel using the bcrypt() method. |
| 189 | + | |
| 190 | + | Enabling this option would also allow users to login to their |
| 191 | + | accounts using the password last used when an AD connection |
| 192 | + | was present. |
| 193 | + | |
| 194 | + | If this option is disabled, the local user account is applied |
| 195 | + | a random 16 character hashed password, and will lose access |
| 196 | + | to this account upon loss of AD connectivity. |
| 197 | + | |
| 198 | + | This option must be true or false and is only applicable |
| 199 | + | to the DatabaseUserProvider. |
| 200 | + | |
| 201 | + */ |
| 202 | + |
| 203 | + 'sync' => env('ADLDAP_PASSWORD_SYNC', true), |
| 204 | + |
| 205 | + |
| 206 | + 'column' => 'password', |
| 207 | + |
| 208 | + ], |
| 209 | + |
179 | 210 | /*
|
180 | 211 | |--------------------------------------------------------------------------
|
181 | 212 | | Login Fallback
|
|
193 | 224 |
|
194 | 225 | 'login_fallback' => env('ADLDAP_LOGIN_FALLBACK', false),
|
195 | 226 |
|
196 |
| - /* |
197 |
| - |-------------------------------------------------------------------------- |
198 |
| - | Password Sync |
199 |
| - |-------------------------------------------------------------------------- |
200 |
| - | |
201 |
| - | The password sync option allows you to automatically synchronize |
202 |
| - | users AD passwords to your local database. These passwords are |
203 |
| - | hashed natively by laravel using the bcrypt() method. |
204 |
| - | |
205 |
| - | Enabling this option would also allow users to login to their |
206 |
| - | accounts using the password last used when an AD connection |
207 |
| - | was present. |
208 |
| - | |
209 |
| - | If this option is disabled, the local user account is applied |
210 |
| - | a random 16 character hashed password, and will lose access |
211 |
| - | to this account upon loss of AD connectivity. |
212 |
| - | |
213 |
| - | This option must be true or false and is only applicable |
214 |
| - | to the DatabaseUserProvider. |
215 |
| - | |
216 |
| - */ |
217 |
| - |
218 |
| - 'password_sync' => env('ADLDAP_PASSWORD_SYNC', true), |
219 |
| - |
220 | 227 | /*
|
221 | 228 | |--------------------------------------------------------------------------
|
222 | 229 | | Windows Auth Attribute
|
|
0 commit comments