diff options
author | Vincent Douillet <vincent@vdouillet.fr> | 2023-11-28 08:38:19 +0100 |
---|---|---|
committer | Vincent Douillet <vincent@vdouillet.fr> | 2023-11-29 15:45:28 +0100 |
commit | 43f65c76152017420ce723b4d4ef4230ff072818 (patch) | |
tree | 5c981b2d6949ebd5a5bdefe112383f6874d9342a /config.h | |
parent | a8158372e4173f760d893516c0d8aecbb0e737ac (diff) |
browse: use khttp_template
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -37,7 +37,7 @@ * files. */ #ifndef DATA_DIR -#define DATA_DIR "/var/www/vault-data" +#define DATA_DIR "/vault-data" #endif /* @@ -48,4 +48,9 @@ #define LOG_FILE "/var/log/vault.log" #endif +/* The directory that contains the HTML template files */ +#ifndef TEMPLATE_DIR +#define TEMPLATE_DIR "/usr/share/vault/template" +#endif + #endif /* CONFIG_H */ |