This article tries to supplement the nginx documentations
regarding the auth_request module
and how to configure it. In my opinion, that documentation
is a bit incomplete.
What is the nginx's auth_request module
The documentation for this module says, it implements client
authorization based on the result of a subrequest.
This …
This is the least you need to know to get to use a Python virtual
environment.
What is a Virtual Environment
At its core, the main purpose of Python virtual environments is to
create an isolated environment for Python projects. This means that
each project can have its own dependencies …
This article is about erasing disc drives securely. Specially for SSD
drives, writing zeros or random data to discs is not good enough and
counterproductive.
One way to do secure erase (for disposal) is to begin with an encrypted
disc. However, after the fact the following options are possible:
ATA …
The point of this recipe is to create a encrypted file sytem
so that when the disc is disposed, it does not need to be
securely erased. This is particularly important for SSD devices
since because of block remapping (for wear levelling) data can't
be overwritten consistently.
The idea is …
I made the switch to void linux. Except for compatibility
issues around glibc
, it works quite well. Most compatibility
I have worked around with a combination of Flatpak
s, chroot
s and
namespaces
.
The high lights of void linux:
- musl build - which is very lightweigth
- Does not depend on
systemd …