Failed to load config file, permission denied

The user is www-data

Have this in the bash script that calls rclone:
dest="/var/www/html/recordings/test.flv"
mv $1 $dest
jag="$(whoami)"
echo "$jag" >> /tmp/temp.log
echo "$1" >> /tmp/temp.log
echo "$dest" >> /tmp/temp.log
ls -ltr $dest >> /tmp/temp.log
/usr/bin/rclone -vv --config=/home/patrik/.config/rclone/rclone.conf --log-file=/tmp/rclone.log copy $dest googlePhotoMalung:album/malungVideos

The temp.log then looks like this:
www-data
/var/www/html/recordings/malung-1604252855.flv
/var/www/html/recordings/test.flv
-rw-r--r-- 1 www-data www-data 4003477 Nov 1 17:47 /var/www/html/recordings/test.flv

/Patrik