Local Storage

The Local Storage engine stores the files in a folder nf the server's file systems. This means that you can for example mount a remote drive via NFS and store all user uploads there. The uploaded files are then served from the server itself.

To enable the local storage for all files, find and set the following values in values.yaml file:

fileStorageConfig: host: # enable storing uploads on the hosts file system enabled: true # Specify the absolute path to a directory on the filesystem where uploads should be stored path: /full_path_to/LOCAL_UPLOADS_FOLDER

Note: Always specify the full path to a folder without the trailing /. Also, make sure the LOCAL_UPLOADS_FOLDER has access rights of 755, as these files are served publicly by nginx.