185.104.32.8
This address is yours. It's serving this placeholder until your first deploy. Push your static site with any of:
sftp anyone@185.104.32.8 # then put your files rsync -az ./ anyone@185.104.32.8: git push anyone@185.104.32.8:site HEAD:main
Deploys are atomic and versioned — your site swaps in instantly. List versions and roll back any time:
ssh anyone@185.104.32.8 versions ssh anyone@185.104.32.8 rollback # to the previous version ssh anyone@185.104.32.8 rollback v2 # to a specific version
Your IP is dedicated, so its reverse DNS (PTR) is yours to set:
ssh anyone@185.104.32.8 ptr # show the current PTR ssh anyone@185.104.32.8 ptr host.example.com # needs an A record here first ssh anyone@185.104.32.8 ptr clear # back to the default
(The SSH user is ignored — only your key matters.)