diff options
author | adrien <adrien@luxeylab.net> | 2024-04-18 17:35:36 +0000 |
---|---|---|
committer | adrien <adrien@luxeylab.net> | 2024-04-18 17:35:36 +0000 |
commit | 18e73b18f39ea19bae54fb4fae461e6c141b49ce (patch) | |
tree | 22bba1330f1e58716bba0812d831dec1c69d62c9 /cluster/prod/app/cryptpad/config/config.js | |
parent | 718a23b74bd13d09306bb17877ceec19464eed27 (diff) | |
parent | 9111997f845cb61bcbe5b5f49672ba26814d19c9 (diff) | |
download | nixcfg-18e73b18f39ea19bae54fb4fae461e6c141b49ce.tar.gz nixcfg-18e73b18f39ea19bae54fb4fae461e6c141b49ce.zip |
Merge pull request 'cluster/prod(app): Upgrade CryptPad to 2024.3.0' (#23) from KokaKiwi/nixcfg:crytptpad-upgrade-1 into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/nixcfg/pulls/23
Diffstat (limited to 'cluster/prod/app/cryptpad/config/config.js')
-rw-r--r-- | cluster/prod/app/cryptpad/config/config.js | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/cluster/prod/app/cryptpad/config/config.js b/cluster/prod/app/cryptpad/config/config.js index d6a0473..6b16996 100644 --- a/cluster/prod/app/cryptpad/config/config.js +++ b/cluster/prod/app/cryptpad/config/config.js @@ -188,7 +188,7 @@ module.exports = { * Specify a directory where files should be stored. * It will be created automatically if it does not already exist. */ - filePath: './root/mnt/datastore/', + filePath: '/mnt/datastore/', /* CryptPad offers the ability to archive data for a configurable period * before deleting it, allowing a means of recovering data in the event @@ -197,36 +197,36 @@ module.exports = { * To set the location of this archive directory to a custom value, change * the path below: */ - archivePath: './root/mnt/data/archive', + archivePath: '/mnt/data/archive', /* CryptPad allows logged in users to request that particular documents be * stored by the server indefinitely. This is called 'pinning'. * Pin requests are stored in a pin-store. The location of this store is * defined here. */ - pinPath: './root/mnt/data/pins', + pinPath: '/mnt/data/pins', /* if you would like the list of scheduled tasks to be stored in a custom location, change the path below: */ - taskPath: './root/mnt/data/tasks', + taskPath: '/mnt/data/tasks', /* if you would like users' authenticated blocks to be stored in a custom location, change the path below: */ - blockPath: './root/mnt/block', + blockPath: '/mnt/block', /* CryptPad allows logged in users to upload encrypted files. Files/blobs * are stored in a 'blob-store'. Set its location here. */ - blobPath: './root/mnt/blob', + blobPath: '/mnt/blob', /* CryptPad stores incomplete blobs in a 'staging' area until they are * fully uploaded. Set its location here. */ - blobStagingPath: './root/mnt/data/blobstage', + blobStagingPath: '/mnt/data/blobstage', - decreePath: './root/mnt/data/decrees', + decreePath: '/mnt/data/decrees', /* CryptPad supports logging events directly to the disk in a 'logs' directory * Set its location here, or set it to false (or nothing) if you'd rather not log |