Backend + Frontend on a Single Container
If you’re like me and you don’t want things to be complicated, then you obviously want everything to run in the same container (I’m exagerating…
Generic Category that encapsulates all software-related blog-posts
If you’re like me and you don’t want things to be complicated, then you obviously want everything to run in the same container (I’m exagerating…
This Dockerfile is a simple build for a WSGI app (This one is Django) FROM opensuse/leap:15.5 RUN zypper –non-interactive si -d python311 python311-pip \ …
Documentation copied from here: https://docs.armbian.com/User-Guide_Advanced-Features/#how-to-run-docker, added here in case that goes down. The following should work for any debian based OS, but currently I’m working…
What is CORS?CORS (Cross-Origin Resource Sharing) is a Header used to let your Browser know that a Website with a different URL is allowed to…
Caddy offers TLS encryption by default (https) and it uses Let’s Encrypt’s authority to automatically generate your certificates. In this short tutorial we will run…
Most of the time you would want to keep GPG enabled, but sometimes you’re not ready to deal with a bunch of GPG secrets (altho…
After a fresh install on a new node, I’ve had a timeout error on `[wait-control-pane]`. The exact issue is documented here: https://github.com/kubernetes/kubeadm/issues/2559Based on this comment:…
Commandopenssl req -new -newkey rsa:2048 -nodes -keyout faresbessrour.com.key -out faresbessrour.com.csrThat will create a key `faresbessrour.com.key` and a csr `faresbessrour.com.csr`, make sure you backup the key…
Caddy offers TLS encryption by default (https) and it uses Let’s Encrypt’s authority to automatically generate your certificates. In this short tutorial we will run…
In this short tutorial, I will show you how to run a development server during Go web development. This made me skip the need to…