Skip to content

ltb-project/service-desk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

26efba3 · Mar 25, 2025
Sep 15, 2023
Mar 26, 2020
Mar 24, 2025
Mar 24, 2025
Mar 25, 2025
Mar 25, 2025
Nov 29, 2024
Dec 31, 2024
Mar 24, 2025
Mar 26, 2020
Aug 1, 2024
Sep 16, 2024
Jun 4, 2021
Jun 21, 2023
Mar 29, 2020
Mar 26, 2020
Apr 29, 2021
Dec 30, 2024
Mar 26, 2020
Dec 30, 2024
Dec 31, 2024
Mar 27, 2020

Repository files navigation

Service Desk

Build Status Documentation Status

Application for support team who need to check, lock, unlock and reset user passwords.

See list of features.

Screenshot

❗ With great power comes great responsibility: this application allows to reset password of any user, you must protect it and allow access only to trusted users.

Documentation

Documentation is available on https://service-desk.readthedocs.io/en/latest/

Docker

We provide an official Docker image.

Create a minimal configuration file:

vi sd.conf.php
<?php // My Service Desk configuration
$ldap_url = "ldap://ldap.example.com";
$ldap_binddn = "cn=admin,dc=example,dc=com";
$ldap_bindpw = 'secret';
$debug = true;
?>

And run:

docker run -p 80:80 \
    -v $PWD/sd.conf.php:/var/www/conf/config.inc.local.php \
    -it docker.io/ltbproject/service-desk:latest