36 lines
1.1 KiB
Bash
36 lines
1.1 KiB
Bash
# nbscloud will look for and store files in this directory - mind the permissions
|
|
NBSCLOUD_FILES_BASEDIR=
|
|
|
|
# Whether dark mode should be used by default
|
|
NBSCLOUD_WEBCONTAINER_SHARED_DARKMODE=true
|
|
|
|
# Knob to configure whether hidden files are shown
|
|
NBSCLOUD_FILES_FILTERHIDDEN=true
|
|
|
|
# Whether to use the trash bin or directly removefiles
|
|
NBSCLOUD_FILES_USETRASHBIN=true
|
|
|
|
# Knob to configure the name of the trash bin directory
|
|
NBSCLOUD_FILES_TRASHBINNAME=nbs.internal/nbs.trashbin
|
|
|
|
# Knob to configure the amount of character after which the filename
|
|
# will be truncated
|
|
NBSCLOUD_FILES_TRUNCATEFILENAMECHARS=130
|
|
|
|
# Knob to configure the name of the shares directory
|
|
NBSCLOUD_FILES_SHARESNAME=nbs.internal/nbs.shares
|
|
|
|
# Knob to configure the name of the app directory
|
|
NBSCLOUD_FILES_APPDIR=nbs.internal/apps
|
|
|
|
# The address the embedded tomcat listens on - you probably want to keep this on localhost
|
|
SERVER_ADDRESS=localhost
|
|
|
|
SERVER_SERVLET_CONTEXTPATH=/nbscloud
|
|
SERVER_PORT=8082
|
|
|
|
# No upload sze restriction
|
|
SPRING_SERVLET_MULTIPART_MAXFILESIZE=-1
|
|
SPRING_SERVLET_MULTIPART_MAXREQUESTSIZE=-1
|
|
|
|
LOGGING_LEVEL_DE_NBSCLOUD=DEBUG |