Skip to content

Commit

Permalink
And the ability to separate cache and service files (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
VyacheslavSemin authored May 17, 2024
1 parent f4dbe8a commit fa0356f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,17 @@ export NODE_CONFIG='{
},
"storage": {
"fs": {
"folderPath": "/var/lib/'${COMPANY_NAME}'/documentserver/App_Data/cache/files/'${STORAGE_SUBDIRECTORY_NAME:-latest}'",
"secretString": "'${SECURE_LINK_SECRET:-verysecretstring}'"
}
},
"storageFolderName": "files/'${STORAGE_SUBDIRECTORY_NAME:-latest}'"
},
"persistentStorage": {
"fs": {
"folderPath": "/var/lib/'${COMPANY_NAME}'/documentserver/App_Data/cache/files",
"secretString": "'${SECURE_LINK_SECRET:-verysecretstring}'"
},
"storageFolderName": "files"
}
}'

Expand Down

0 comments on commit fa0356f

Please sign in to comment.