Basic implementation for files app
This commit is contained in:
29
files/src/main/resources/config/files-application.properties
Normal file
29
files/src/main/resources/config/files-application.properties
Normal file
@@ -0,0 +1,29 @@
|
||||
spring.profiles.active=@activeProfiles@
|
||||
|
||||
info.app.name=NoBullShit Cloud - Files app
|
||||
info.app.description=A simple web file admin app
|
||||
|
||||
# Knob to configure the base dir where files stores and reads files
|
||||
# Make sure the permissions match
|
||||
#nbs-cloud.files.baseDir=/home/marius/nbstest
|
||||
nbs-cloud.files.baseDir=/home/marius
|
||||
|
||||
# Knob to configure whether hidden files (e.g. starting with '.' on *NIX)
|
||||
# will be filtered in the file view
|
||||
# Possible values: true|false
|
||||
nbs-cloud.files.filterHidden=true
|
||||
|
||||
# Knob to configure whether a trash bin should be used
|
||||
# or the files should be hard deleted
|
||||
# Possible values: true|false
|
||||
nbs-cloud.files.useTrashBin=true
|
||||
|
||||
# Knob to configure the name of the trash bin directory
|
||||
nbs-cloud.files.trashBinName=nbs.internal/nbs.trashbin
|
||||
|
||||
# Knob to configure the amount of character after which the filename
|
||||
# will be truncated
|
||||
nbs-cloud.files.truncateFileNameChars=130
|
||||
|
||||
# Knob to configure the name of the shares directory
|
||||
nbs-cloud.files.sharesName=nbs.internal/nbs.shares
|
||||
Reference in New Issue
Block a user