2021-11-14 15:54:23 +00:00
|
|
|
# Storage
|
|
|
|
|
|
|
|
## Settings
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
##########################
|
|
|
|
##### STORAGE CONFIG #####
|
|
|
|
##########################
|
|
|
|
|
|
|
|
# Config pertaining to storage of user-created uploads (videos, images, etc).
|
2021-12-07 12:31:39 +00:00
|
|
|
|
|
|
|
# String. Type of storage backend to use.
|
|
|
|
# Examples: ["local", "s3"]
|
|
|
|
# Default: "local" (storage on local disk)
|
|
|
|
# NOTE: s3 storage is not yet supported!
|
|
|
|
storage-backend: "local"
|
|
|
|
|
|
|
|
# String. Directory to use as a base path for storing files.
|
|
|
|
# Make sure whatever user/group gotosocial is running as has permission to access
|
|
|
|
# this directly, and create new subdirectories and files with in.
|
|
|
|
# Examples: ["/home/gotosocial/storage", "/opt/gotosocial/datastorage"]
|
|
|
|
# Default: "/gotosocial/storage"
|
2021-12-20 14:19:53 +00:00
|
|
|
storage-local-base-path: "/gotosocial/storage"
|
2021-12-07 12:31:39 +00:00
|
|
|
```
|