Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
N
Node Radius Server
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
Node Radius Server
Commits
cca4dce9
Commit
cca4dce9
authored
Feb 23, 2020
by
simon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: docs
parent
3f600c66
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
3 deletions
+17
-3
README.md
README.md
+17
-3
No files found.
README.md
View file @
cca4dce9
...
@@ -55,14 +55,14 @@ you need:
...
@@ -55,14 +55,14 @@ you need:
2.
Optional: Create your own SSL certificate (e.g. self signed via npm run create-certificate)
2.
Optional: Create your own SSL certificate (e.g. self signed via npm run create-certificate)
3.
Check config.js and adapt to your needs
3.
Check config.js and adapt to your needs
-
configure authentication e.g. for LDAP
-
configure authentication:
set authenticaiton to one of the provided authenticators.
```
js
```
js
var
config
=
{
var
config
=
{
// ....
// ....
authentication
:
'
ldap
'
,
authentication
:
'
GoogleLDAPAuth
'
,
authenticationOptions
:
{
authenticationOptions
:
{
url
:
'
ldap://127.0.0.1:1636
'
,
base
:
'
dc=hokify,dc=com
'
base
:
'
dc=hokify,dc=com
'
}
}
};
};
...
@@ -85,6 +85,20 @@ see config.js in root
...
@@ -85,6 +85,20 @@ see config.js in root
google ldap optimized authenticiation implementaiton
google ldap optimized authenticiation implementaiton
```
typescript
interface
IGoogleLDAPAuthOptions
{
/** base DN
* e.g. 'dc=hokify,dc=com', */
base
:
string
;
/** tls options
* e.g. {
key: fs.readFileSync('ldap.gsuite.hokify.com.40567.key'),
cert: fs.readFileSync('ldap.gsuite.hokify.com.40567.crt')
} */
tlsOptions
:
tls
.
TlsOptions
;
}
```
#### LDAP
#### LDAP
ldap authentication
ldap authentication
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment