diff options
author | Vincent Douillet <vincent@vdouillet.fr> | 2023-08-09 10:51:16 +0200 |
---|---|---|
committer | Vincent Douillet <vincent@vdouillet.fr> | 2023-08-09 10:51:16 +0200 |
commit | 8b04ab2fc5d34693052fd16de20237498de67f58 (patch) | |
tree | 8fac3830bde09d326abc8cdee159205425c4d1ee /config.h | |
parent | f172ffca292594147939280dab20cb03a4921fb6 (diff) |
add readme
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -31,7 +31,21 @@ #ifndef VAULT_CONFIG_H #define VAULT_CONFIG_H +/* + * The directory that will be browseable through vault. The vault process + * should have full read/write access to this folder and any subfolders and + * files. + */ +#ifndef DATA_DIR #define DATA_DIR "/var/www/vault-data" +#endif + +/* + * The log file. The vault process needs write permissions to this file, + * otherwise it will quit with an error. + */ +#ifndef LOG_FILE #define LOG_FILE "/var/log/vault.log" +#endif #endif /* VAULT_CONFIG_H */ |