LDAP account manager

Clément Krebs 48912f9597 Merge branch 'manage-sshkeys' of clement/BIM into master 2 年之前
includes 0e256c41e3 Adding base logic for managing ssh keys 2 年之前
public eddfb09cae SSH Keys are now fetched and displayed on the ssh managing page 2 年之前
src 48912f9597 Merge branch 'manage-sshkeys' of clement/BIM into master 2 年之前
templates 3ee6743341 Added the possibility to delete ssh keys 2 年之前
.gitignore 6ee763bb34 Inital commit 2 年之前
CONTRIBUTING.md 49e78acb3a Adding readme and contributing + fixed type (binddn --> basedn) 2 年之前
README.md 49e78acb3a Adding readme and contributing + fixed type (binddn --> basedn) 2 年之前
composer.json 0d2afa8988 Adding routing package 2 年之前
composer.lock 0d2afa8988 Adding routing package 2 年之前

README.md

BIM

Bretzel Identity Manager ou BIM Identity Manager

  1. Installation
  2. Contributing

Installation

  • Clone this repo and serve the files with a web server. Make sure to exclude: /vendor/ templates and includes
  • Rename includes/config.ini.example to includes/config.ini and edit the file with your parameters

Example using caddy behind HTTPS reverse proxy

http://bim.example.org {
	
  @blocked {
	path /vendor/* /templates/* /includes/*
  }

  respond @blocked 403

  handle {
    root * /srv/bim
    php_fastcgi caddy-phpfpm:9000 {
	index signin.php
    }
  }
}

BIM will be accessible using bim.example.org.

Contributing

Please refer to this page.