Category: Linux

  • MinIO – Small MinIO Deployment with NGinx Reverse Proxy

    MinIO – Small MinIO Deployment with NGinx Reverse Proxy

    Deploying a small MinIO deployment with Nginx as a reverse proxy is a simple process that can be done in a few steps. This tutorial will guide you through the process of deploying MinIO with Nginx as a reverse proxy on a Linux system. Step 1: Install and configure NginxThe first step is to install […]

  • Dovecot – Filter Email To Folders

    Dovecot – Filter Email To Folders

    Dovecot Sieve is a powerful email filtering tool that allows you to automatically sort, move, or even delete emails based on predefined rules. Here’s how you can use Dovecot Sieve to filter emails based on specific criteria: Step 1: Create a sieve script Create a new sieve script by opening a text editor and saving […]

  • Fast GZip Compression With PIGZ

    Fast GZip Compression With PIGZ

    Compressing TAR archives with GZip can be.. slow. What if you could use all the threads available on your CPU? You can with PIGZ! Install on MacOS with Brew: Compress tar archives with pigz (high compressionrate) Save them bits 👾

  • CURL Print Only Header

    CURL Print Only Header

    Sometimes you need to debug, or test, some web-server and you only need to read the response header from your request. Curling and scrolling, or curling and less:ing… nah. All you need to remember is -sIX GET: Example output: Watch your head(er) 👾

  • Kubernetes – Enable GZip For Nginx Ingress Controller

    Kubernetes – Enable GZip For Nginx Ingress Controller

    It may feel obvious, like something that just should… be there? I am of course speaking of GZip compression for NGinx Ingress on Kubernetes… Duh. Here’s how to enable it (once deployed): First, edit the configmap Second, Add the following :wq to save This should GZIP compress everything Compress all the things 👾