Posts
-
May 20, 2025
Running a resilient, secure service infrastructure across two nodes can be achieved by using a dual Traefik instance configuration. This guide walks through the setup of a primary Traefik proxy on Server 1 with automatic fallback routing to Server 2, …
-
August 4, 2024
Just want to share this very short code snippet that helped me to Convert Linux /proc/net/tcp (currently active tcp connections) from hex to human readable format - IPs with ports, helps with troubleshooting :) # by pduchnovsky, …
-
February 5, 2024
Just wanted to share quick script to enable very basic geoblocking @ port 443, useful for web facing server where you don’t need access from the whole world :) Of course, this is only sufficient for servers where only port 443 is forwarded, for …
-
February 27, 2023
Yes, damnit ! Since I bought a new z790 board I was experiencing problems where my Ethernet network adapter was not connected after startup, solution was to restart the adapter and everything was peachy. This is due to a bug on Intel side, which …
-
July 14, 2021
Yes, sometimes you only want to create/set up a certain block within a resource only when a specific part of a variable is set.. …and yes, it’s possible, thanks to try and dynamic blocks as well as for_each :) Let me show you how to …
-
May 31, 2021
Well hello there, I was like you, looking for a solution to this problem related to kubernetes issue #81976 and hoping I’d find it.. well, you are on the right place and I won’t bother you with a lot of talking but rather show you the …
-
December 3, 2020
Info JAMstack is a modern web development architecture based on client-side JavaScript, APIs and content written in Markup format. The Static Site Generators are closely related to the JAMstack architecture which in itself is just an acronym. Why …
-
November 18, 2020
I know, I know.. this is what some themes are offering already but there is plenty that don’t.. many outdated guides are not working and even I had problems finding proper solution. First of all Link to heading These are variables that must be …
-
November 11, 2020
Just recently I was looking for a way on how to simply (without JS) make gallery page for my portfolio and made this css out of many guides on the internet :) Simply add this to your css code and try playing with it, there are examples in the article …
-
November 11, 2020
I was looking around for an easy way to what I was trying to achieve.. but didn’t find it, so I decided to create a pipe (that’s what they are called, right ? :D) on my own. I was basically trying to achieve these things: Adding html …