You are here |
humanwhocodes.com | ||
| | | |
blog.tolki.dev
|
|
| | | | I have a PC that's always on. | |
| | | |
www.drewlyton.com
|
|
| | | | Hey friends ??, A few months ago, Amazon announced that Kindle users would no longer be able to download and back up their book libraries to their computers. Thankfully, I still have access to my library because I saw this video by Jared Henderson warning of the change and downloaded all | |
| | | |
blog.darrien.dev
|
|
| | | | After many years of my main site and my blog (you're here right now) being hosted on infra I don't own, I have migrated everything to infra I do own. My main site was hosted on GitHub pages, and my dev blog on a Google Cloud Micro instance (the free tier one). I didn't intentionally scatter them about, it kind of just happened over the years. I had a little extra time on my hands and was tired of the messy configuration, so I decided to unify them. | |
| | | |
yasha.solutions
|
|
| | Installing keycloak Keycloak is a redhat (and therefore now IBM) product for Identity and Access Management, so you can add authentication to applications and secure services. It's all available out of the box. If you need an auth service for your app, Keycloak is a perfect candidate. Docker compose I like docker compose, so here is how I do it using official example from their repo: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 version: '3' volumes: postgres_data: driver: local... |