Hi,
I've been trying out static site generators for the first time and have successfully uploaded my website to my hostgator account using FTP. However, I'm having difficulty getting rsync to work.
I have tried the following in my nanoc.yaml file:
deploy:
default:
kind: rsync
dst: "username@ip_address:destination_path"
deploy:
default:
kind: rsync
dst: "username@website_address:destination_path"
However, both give me connection timeouts when I do "nanoc deploy --target default". I have enabled ssh on my hostgator account and have been able to connect by doing
ssh -p 2222 username@ip_adress
Am I making a simple mistake here?