mirror of
https://github.com/binary-kitchen/doorlockd
synced 2024-11-16 12:09:10 +01:00
22 lines
464 B
C
22 lines
464 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#cmakedefine USE_COLORIZED_LOGS
|
|
|
|
#ifdef DEBUG
|
|
#define DEFAULT_LOG_LEVEL LogLevel::debug2
|
|
#else
|
|
#define DEFAULT_LOG_LEVEL LogLevel::info
|
|
#endif
|
|
|
|
#define TOKEN_TIMEOUT 60
|
|
#define LOCKPAGE_PREFIX "https://lock.binary.kitchen/"
|
|
#define FIFO_LOCATION "/var/run/doorlockd/doorlockd"
|
|
|
|
#define LDAP_SERVER "ldaps://ldap.binary.kitchen"
|
|
#define BINDDN "cn=%s,ou=Users,dc=binary-kitchen,dc=de"
|
|
|
|
#define ALLOWEDIPPREFIX "172.23.3."
|
|
|
|
#endif
|