Skip to content

Instantly share code, notes, and snippets.

@mhemrg
Created March 3, 2020 18:10
Show Gist options
  • Save mhemrg/376a6ba51affe1a1475140b7c9e0807f to your computer and use it in GitHub Desktop.
Save mhemrg/376a6ba51affe1a1475140b7c9e0807f to your computer and use it in GitHub Desktop.
Liara | Laravel Backup Volume
# Install zip package
apt-get update && apt-get install -y zip
# Backup your folder
zip –r backup.zip /var/www/html/storage
# Move the backup file to the public folder
mv backup.zip /var/www/html/public
# Download the backup via your browser
@reza-madani
Copy link

Delete backup folder

cd public/ && rm backup.zip && cd ..

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment