diff options
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 */ |