Changelog
Added
- Backup module can now use SFTP or S3 Storage.
Changed
- Fix Dice avatar URL
Upgrade Guide (optional)
Below are some additional steps required after you complete the
upgrade guide.
- Add these new .environment variables to your .env file at the end.
SFTP_DISK_HOST=
SFTP_DISK_USERNAME=
SFTP_DISK_PASSWORD=
SFTP_DISK_PORT=22
AWS_PRIVATE_BUCKET=
- Run sh update.sh
- Done!
How to use S3 for Backup Storage
If you want to Store your Backups in S3 then configure all AWS related environment variable including AWS_PRIVATE_BUCKET and set BACKUP_DISK to s3-private.
AWS_ACCESS_KEY_ID=key
AWS_SECRET_ACCESS_KEY=sadsadasd+dadas
AWS_DEFAULT_REGION=eu-central-1
AWS_BUCKET=minetrax-public
AWS_PRIVATE_BUCKET=minetrax-private
AWS_USE_PATH_STYLE_ENDPOINT=false
BACKUP_DISK=s3-private
How to use SFTP for Backup Storage
Fill all SFTP related details in .env
SFTP_DISK_HOST=ftp.yoursite.com
SFTP_DISK_USERNAME=yourusername
SFTP_DISK_PASSWORD=yourpassword
SFTP_DISK_PORT=22
BACKUP_DISK=sftp