Docs
Why this repository?
To help others (beginners like me) to build secure digitalocean droplets effectively.
Useful Notes
- I prefer Ubuntu OS for droplets so you'll find shell commands accordingly.
- I've mentioned several references available on internet which are/were useful to me.
- I've mostly specified
-y
option on installation commands which don't prompt me to confirm - If you are unsure about any command how to use it, then always execute it with
--help
or-h
. e.g.certbot --help
- Installed services can be found under
/etc/init.d
directory and service can be restarted using/etc/init.d/sendmail restart
Summary of basics
Detailed information on basics
Before installation of any packages, it is recommended to update your system repositories:
apt update
It is also recommended to upgrade your packages at regular intervals and restart droplets:
apt upgrade -y