🚀 Final Checklist
Checklist of considerations for VPS deployment
- DDOS attack
- Caching. CDN. Database
- Scaling Up. Increase CPU/RAM of VPS
- Sending email.
- Deploying with Docker
- Coolify
- Logging/Monoitoring
- Backups. Disaster recovery plan. Ansible
- Deploying with SST
server { # …
location / {
# ...
deny 192.168.1.100;
deny 10.0.0.0/8;
allow all;
}
}