Skip to content

Generic Category that encapsulates all software-related blog-posts

11/7/2023

Python OpenSUSE Leap Image

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 \  …

8/23/2023

Prepare Docker on Armbian

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…

Handle CORS on CaddyServer
8/6/2023

Handle CORS on CaddyServer

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…

Generate a CSR/Key pair with openssl on Linux
6/18/2023

Generate a CSR/Key pair with openssl on Linux

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…

Back To Top