14 lines
452 B
Text
14 lines
452 B
Text
# the storage driver used
|
|
# - local: stores files on a local hard drive
|
|
# - s3: uses S3-compatible storage (not yet implemented)
|
|
STORAGE=local
|
|
|
|
# for local storage, the path used
|
|
# if the path starts with a /, it's treated as an absolute path
|
|
# if not, it's treated as a path relative to the working directory
|
|
# defaults to "uploads"
|
|
LOCAL_PATH=/var/filer/uploads
|
|
|
|
# the port used by the web server
|
|
# the server will not run if this is empty
|
|
PORT=8080
|