185.104.32.7
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.7 # then put your files rsync -az ./ anyone@185.104.32.7: git push anyone@185.104.32.7: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.7 versions ssh anyone@185.104.32.7 rollback # to the previous version ssh anyone@185.104.32.7 rollback v2 # to a specific version
Your IP is dedicated, so its reverse DNS (PTR) is yours to set:
ssh anyone@185.104.32.7 ptr # show the current PTR ssh anyone@185.104.32.7 ptr host.example.com # needs an A record here first ssh anyone@185.104.32.7 ptr clear # back to the default
(The SSH user is ignored — only your key matters.)