debmaker/ressources/kimai2
thomas 9a733a6499 update version & section change 2022-11-01 22:14:36 +01:00
..
rootfs update version & section change 2022-11-01 22:14:36 +01:00
README.MD Add keycloak 2022-10-16 01:39:24 +02:00
debmaker update version 2022-10-30 07:44:48 +01:00

README.MD

kimai2

Information

Site : https://www.kimai.org/

Source : https://github.com/kevinpapst/kimai2.git

Install
apt install -y wget ca-certificates
wget -qO - https://deb.lgy.fr/install.sh | bash
apt-get update
apt install kimai2

# sample configuration for apache2 + vhost

cp /usr/share/doc/kimai2/apache2-kimai2.conf /etc/apache2/sites-available/kimai2.conf
a2ensite kimai2

# edit /etc/apache2/sites-available/kimai2.conf
# edit /etc/kimai2.conf

systemctl restart apache2
Configuration

Create database sample

create user kimai2@localhost identified by 'password';
create database IF NOT EXISTS kimai2;
grant all privileges on kimai2.* to kimai2@localhost;