mirror of
https://github.com/laurivosandi/certidude
synced 2025-09-07 14:11:05 +00:00
* Improved offline install docs * Migrated token mechanism backend to SQL * Preliminary token mechanism frontend integration * Add clock skew tolerance for OCSP * Add 'ldap computer filter' support for Kerberized machine enroll * Include OCSP and CRL URL-s in certificates, controlled by profile.conf * Better certificate extension handling * Place DH parameters file in /etc/ssl/dhparam.pem * Always talk to CA over port 8443 for 'certidude enroll' * Hardened frontend nginx config * Separate log files for frontend nginx * Better provisioning heuristics * Add sample site.sh config for LEDE image builder * Add more device profiles for LEDE image builder * Various bugfixes and improvements
16 lines
321 B
SQL
16 lines
321 B
SQL
create table if not exists log (
|
|
id integer primary key autoincrement,
|
|
created datetime,
|
|
facility varchar(30),
|
|
level int,
|
|
severity varchar(10),
|
|
message text,
|
|
module varchar(20),
|
|
func varchar(20),
|
|
lineno int,
|
|
exception text,
|
|
process int,
|
|
thread text,
|
|
thread_name text
|
|
)
|