commit f7b506c9b5eae0ced774993a31c0e30885c839e3
parent 209bfde14edef0c2afb0066b55f3aa25aa1afc69
Author: oscarbenedito <oscar@obenedito.org>
Date:   Fri, 17 Jan 2020 21:54:35 +0100

New entry: documenting server

Diffstat:
Acontent/blog/2020-01-17-documenting-server.md | 20++++++++++++++++++++
1 file changed, 20 insertions(+), 0 deletions(-)

diff --git a/content/blog/2020-01-17-documenting-server.md b/content/blog/2020-01-17-documenting-server.md @@ -0,0 +1,20 @@ +--- +title: "Documenting my server" +categories: incidental +tags: ["Personal server", "VPS", "Documentation", "DIY", "Backup"] +--- +Not long ago I realized that I could get $50 of credit on Digital Ocean with my GitHub Student account, so I decided to try it. I transferred my website there, and with time I started adding services. It is currently running the following services: + + - My webpage ([obenedito.org](https://obenedito.org)). + - A redirection from [www.obenedito.org](https://www.obenedito.org) to [obenedito.org](https://obenedito.org). + - A [Gotify](https://gotify.net/) server through which I am able to send notifications to my phone. + - A static page showing traffic on my website thanks to [GoAccess](https://goaccess.io/) (which analyzes Apache's log files). + - It runs [this script](https://gitlab.com/oscarbenedito/git-backup) daily to back up all my git repositories and others I find interesting. + - It notifies me if any new documents are uploaded to my college Moodle using [this script](https://gitlab.com/oscarbenedito/aun) and a cronjob. + - It notifies me every time someone logs in to the server using SSH. + +As time passes I am adding more and more features to my server. In the first place because it is fun to learn about different things and installing them, but also because they are useful features (indeed I have tried to run other programs which ended up not being as useful as I initially thought). I realized it is getting to the point where if something was to happen to my server (and it got erased), I would probably not remember how I set up everything, so I decided to do some documentation work[^backup]. + +[^backup]: I know that taking snapshots of the server or making a backup every once in a while would solve that issue. However, that wasn't the only goal. I wanted to be able to rebuild my server from scratch again. + +After some time, I am nearly done documenting everything that is set up and I am pretty confident if I had to do it all again now, the documentation would be very useful. Besides, it is also a good way of keeping a record of everything running in the server and its configuration.