8000 GitHub - majortank/LDAP-AUTH: This project is a web application that uses LDAP (Lightweight Directory Access Protocol) for authentication.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

This project is a web application that uses LDAP (Lightweight Directory Access Protocol) for authentication.

Notifications You must be signed in to change notification settings

majortank/LDAP-AUTH

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Project Description

  • This project is a web application that uses LDAP (Lightweight Directory Access Protocol) for authentication.
  • LDAP is a protocol used to access and maintain distributed directory information services over an Internet Protocol (IP) network.

Project Documentation

Environment Variables

This project uses environment variables for configuration. These variables are stored in a .env file. An example of this file, .env.example, is included in the project.

Here are the environment variables used in this project:

LDAP Settings

  • AUTH_LDAP_SERVER_URI: This is the URI of your LDAP server. Replace your_ldap_server_uri with the actual URI.

  • AUTH_LDAP_BIND_DN: This is the Distinguished Name (DN) to bind to the LDAP server. Replace your_ldap_bind_dn with the actual DN.

  • AUTH_LDAP_BIND_PASSWORD: This is the password to bind to the LDAP server. Replace your_ldap_bind_password with the actual password.

To use these variables, copy .env.example to a new file named .env and replace the placeholders with your actual values.

Steps to Run the Project Locally

  1. Clone the repository

    Use the following command to clone the repository:

    git clone <repository_url>
    
  2. Navigate to the project directory

    After cloning the repository, navigate to the project directory:

    cd <project_directory>
    
  3. Install the dependencies

    Depending on the programming language and the package manager used in the project, you will need to install the dependencies. For example, if the project uses Node.js and npm, you would use:

    npm install
    

    Or if the project uses Python and pip, you would use:

    pip install -r requirements.txt
    
  4. Set up the environment variables

    Copy the .env.example file to a new file named .env:

    cp .env.example .env
    

    Then, open the .env file and replace the placeholders with your actual values.

  5. Run the project

    The command to run the project will depend on the programming language and the framework used. For example, if the project uses Node.js and Express, you might use:

    npm start
    

    Or if the project uses Python and Django, you might use:

    python manage.py runserver
    

Please replace <repository_url> and <project_directory> with the actual URL of the repository and the name of the project directory, respectively.

About

This project is a web application that uses LDAP (Lightweight Directory Access Protocol) for authentication.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0