How To Use PyJWT With Django In A Resource Server And Still Keep Parts Of Your Sanity
https://blog.ploetzli.ch/2024/pyjwt-django-resource-server-sane/
Published: August 20, 2024 10:31
The OAuth2 spec cleanly separates the role of Authorization Server (AS) from that of Resource Server (RS). The role of the AS, and the whole OAUTH2 dance, is to get an access token that will be accepted by a RS.It’s puzzling. It should be easy, nay,…
Making Good Bug Reports
https://blog.ploetzli.ch/2024/making-good-bug-reports/
Published: August 2, 2024 07:44
Many, many years ago, this was with Bugzilla in the early 2000s, I got my first automated lecture on what constitutes a good bug report. I probably didn’t pay attention. Since then, I’ve seen this list countless times, in various levels of detail, across a…
Docker Deployment Best Practices
https://blog.ploetzli.ch/2024/docker-deployment-best-practices/
Published: August 1, 2024 10:21
Given: There’s a CI system that automatically builds docker images from your VCS (e.g. git), we use self-hosted gitlab.Goal: Both initial and subsequent automated deployments to different environments (staging and production). Rejected ApproachesMost…