Compare commits
No commits in common. "00a8350f1dfe38733232c0172bb495e07cfaed09" and "c588e13bd8c97913b4d84aec53fc8ede15a6faa4" have entirely different histories.
00a8350f1d
...
c588e13bd8
@ -32,7 +32,7 @@ Take a look at the [Docker Container](https://github.com/leenooks/phpLDAPadmin/w
|
|||||||
The update to v2 is progressing well - here is a list of work to do and done:
|
The update to v2 is progressing well - here is a list of work to do and done:
|
||||||
|
|
||||||
- [X] Creating new LDAP entries
|
- [X] Creating new LDAP entries
|
||||||
- [X] Delete existing LDAP entries
|
- [ ] Delete existing LDAP entries
|
||||||
- [X] Updating existing LDAP Entries
|
- [X] Updating existing LDAP Entries
|
||||||
- [X] Password attributes
|
- [X] Password attributes
|
||||||
- [X] Support different password hash options
|
- [X] Support different password hash options
|
||||||
|
@ -25,9 +25,6 @@ class SwapinAuthUser
|
|||||||
{
|
{
|
||||||
$key = config('ldap.default');
|
$key = config('ldap.default');
|
||||||
|
|
||||||
if (! array_key_exists($key,config('ldap.connections')))
|
|
||||||
abort(599,sprintf('LDAP default server [%s] configuration doesnt exist?',$key));
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
// Rebuild our connection with the authenticated user.
|
// Rebuild our connection with the authenticated user.
|
||||||
if (Session::has('username_encrypt') && Session::has('password_encrypt')) {
|
if (Session::has('username_encrypt') && Session::has('password_encrypt')) {
|
||||||
|
@ -15,7 +15,7 @@ return [
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'default' => env('LDAP_CONNECTION', 'ldap'),
|
'default' => env('LDAP_CONNECTION', 'openldap'),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
@ -30,7 +30,7 @@ return [
|
|||||||
|
|
||||||
'connections' => [
|
'connections' => [
|
||||||
|
|
||||||
'ldap' => [
|
'openldap' => [
|
||||||
'hosts' => [env('LDAP_HOST', '127.0.0.1')],
|
'hosts' => [env('LDAP_HOST', '127.0.0.1')],
|
||||||
'username' => env('LDAP_USERNAME', 'cn=user,dc=local,dc=com'),
|
'username' => env('LDAP_USERNAME', 'cn=user,dc=local,dc=com'),
|
||||||
'password' => env('LDAP_PASSWORD', 'secret'),
|
'password' => env('LDAP_PASSWORD', 'secret'),
|
||||||
@ -42,7 +42,7 @@ return [
|
|||||||
'name' => env('LDAP_NAME','LDAP Server'),
|
'name' => env('LDAP_NAME','LDAP Server'),
|
||||||
],
|
],
|
||||||
|
|
||||||
'ldaps' => [
|
'openldaps' => [
|
||||||
'hosts' => [env('LDAP_HOST', '127.0.0.1')],
|
'hosts' => [env('LDAP_HOST', '127.0.0.1')],
|
||||||
'username' => env('LDAP_USERNAME', 'cn=user,dc=local,dc=com'),
|
'username' => env('LDAP_USERNAME', 'cn=user,dc=local,dc=com'),
|
||||||
'password' => env('LDAP_PASSWORD', 'secret'),
|
'password' => env('LDAP_PASSWORD', 'secret'),
|
||||||
@ -54,7 +54,7 @@ return [
|
|||||||
'name' => env('LDAP_NAME','LDAPS Server'),
|
'name' => env('LDAP_NAME','LDAPS Server'),
|
||||||
],
|
],
|
||||||
|
|
||||||
'starttls' => [
|
'openldaptls' => [
|
||||||
'hosts' => [env('LDAP_HOST', '127.0.0.1')],
|
'hosts' => [env('LDAP_HOST', '127.0.0.1')],
|
||||||
'username' => env('LDAP_USERNAME', 'cn=user,dc=local,dc=com'),
|
'username' => env('LDAP_USERNAME', 'cn=user,dc=local,dc=com'),
|
||||||
'password' => env('LDAP_PASSWORD', 'secret'),
|
'password' => env('LDAP_PASSWORD', 'secret'),
|
||||||
@ -66,7 +66,6 @@ return [
|
|||||||
'name' => env('LDAP_NAME','LDAP-TLS Server'),
|
'name' => env('LDAP_NAME','LDAP-TLS Server'),
|
||||||
],
|
],
|
||||||
|
|
||||||
/*
|
|
||||||
'opendj' => [
|
'opendj' => [
|
||||||
'hosts' => ['opendj'],
|
'hosts' => ['opendj'],
|
||||||
'username' => 'cn=Directory Manager',
|
'username' => 'cn=Directory Manager',
|
||||||
@ -78,7 +77,6 @@ return [
|
|||||||
'use_tls' => env('LDAP_TLS', false),
|
'use_tls' => env('LDAP_TLS', false),
|
||||||
'name' => 'OpenDJ Server',
|
'name' => 'OpenDJ Server',
|
||||||
],
|
],
|
||||||
*/
|
|
||||||
|
|
||||||
],
|
],
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<div class="h-100 bg-animation">
|
<div class="h-100 bg-animation">
|
||||||
<div class="d-flex h-100 justify-content-center align-items-center">
|
<div class="d-flex h-100 justify-content-center align-items-center">
|
||||||
<div class="mx-auto col-12 col-sm-8">
|
<div class="mx-auto app-login-box col-md-8">
|
||||||
<x-file-note file="login-note.html"/>
|
<x-file-note file="login-note.html"/>
|
||||||
|
|
||||||
<div class="modal-dialog modal-lg">
|
<div class="modal-dialog modal-lg">
|
||||||
|
@ -11,16 +11,16 @@
|
|||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<div class="h-100 bg-animation">
|
<div class="h-100 bg-animation">
|
||||||
<div class="d-flex h-100 justify-content-center align-items-center">
|
<div class="d-flex h-100 justify-content-center align-items-center">
|
||||||
<div class="mx-auto col-12 col-sm-8">
|
<div class="mx-auto app-login-box col-md-8">
|
||||||
|
|
||||||
<div class="modal-dialog modal-lg">
|
<div class="modal-dialog w-100 mx-auto">
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-header p-3">
|
<div class="modal-header">
|
||||||
<img class="w-25" src="{{ url('images/logo-h-lg.png') }}">
|
<img class="w-25" src="{{ url('images/logo-h-lg.png') }}">
|
||||||
<span class="card-header-title text-danger ms-auto fs-4">@yield('title')</span>
|
<span class="card-header-title text-danger ms-auto fs-4">@yield('title')</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="modal-body p-3">
|
<div class="modal-body">
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<span class="badge text-danger fsize-2 mb-3">@yield('error')</span>
|
<span class="badge text-danger fsize-2 mb-3">@yield('error')</span>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user