Skip to main content

Thanwer's Blog

First Post

Table of Contents

# A Sysadmin blog

I was thinking for a couple months to start a blog on the internet. My idea is to share my daily experiences to my fellow sysadmins and network administrators.

I was looking for something simple and easy to maintain, since I don’t want to spend too much of my free time here.

# The tool

I found Hugo which is a static website generator that reads content written in Markdown and generates HTML files.

The fact that it generates static files makes this very performant, and at the same time very simple to use and maintain.

# The hosting

Well, since I have one VM on Hetzner Cloud for my personal use, I just hosted this blog together on the same VM, since I believe this will not be generating a lot of traffic

You can also use Github Pages or Cloudflare Pages by following simple instructions!

# The deploy

I followed Hugo guide to deploy by rsync and I worked very well for me.

A simple bash script to generate the website and deploy, all in one line!

#!/usr/bin/env bash
hugo && rsync -avz --delete public/ shinobi.thanwer.com:/srv/www/blog/

# The Conclusion

From my experience until now (which is only the contents of this post btw…), this platform seems to meet my expectations I will continue to bring move topics and keep you guys posted!