(This may work on windows CMD terminal as well.)
Quick fix command that needs to be used.
sudo scp -i /mnt/d/PuttyKey/live_open_ssh -r /mnt/d/ixi\ backup/November_29_acf8a2576fd1cce99287_20211129171850_archive.zip [email protected]:/var/www/html
When you will run this you may get
scp: /var/www/html/November_29_acf8a2576fd1cce99287_20211129171850_archive.zip: Permission denied
sudo chown -R ubuntu:ubuntu /var/www/html
sudo chmod -R 755 /var/www/html
Fixing permissions for your instance. https://docs.litespeedtech.com/cloud/images/wordpress/#uploading-files
sudo chown -R www-data:www-data /var/www/html
sudo find /var/www/html -type d -exec chmod 0755 {} \;
sudo find /var/www/html -type f -exec chmod 0644 {} \;
OpenLiteSpeed Change PHP version