Your cart is currently empty!
Category: Phoenix Ignited Tech Blog
Automating Securing Ubuntu w/ Ansible
Automating Securing Ubuntu w/ Ansible Automating Securing Ubuntu w/ Ansible November 9, 2024 In this lightning fast tutorial we’ll go through automating the first 10 minutes on an Ubuntu server (aka securing an Ubuntu server). The playbook includes installing various essential packages, creating users, copying users’ ssh pub keys to the remote servers, installing andย …
Setting up SSH Keys Using Cloud Config
Setting up SSH Keys Using Cloud Config Setting up SSH Keys Using Cloud Config November 8, 2024 In this tutorial we’ll cover setting up SSH keys with cloud config. You can find general cloud config usage examples here: https://cloudinit.readthedocs.io/en/latest/reference/examples.html Cloud config uses yaml syntax. This tutorial assumes you have generated an ssh private – public…
Changing the Root Password in Linux
Changing the Root Password in Linux Changing the Root Password in Linux November 7, 2024 In case anyone was wondering this is how you change the root password in linux. (If you didn’t know, don’t worry, I wrote this tutorial because someone (guess who) didn’t know ๐ ) If you are root: Copy to clipboard…
-
Enhancing Images with AI Using Let’s Enhance
Enhancing Images with AI Using Let’s Enhance Enhancing Images with AI Using Let’s Enhance November 7, 2024 In this post I briefly explore using Lets Enhance AI to enhance image quality. I tested Lets Enhance on a few pictures and found the results to be pretty impressive. Links: Official Let’s Enhance website Using Let’s Enhance…
Deploy Unity & Godot WebGL Games on ANY Web Host
Deploy Unity & Godot WebGL Games on ANY Web Host Deploy Unity & Godot WebGL Games on ANY Web Host November 6, 2024 In this tutorial we will go through deploying Unity & Godot WebGL games on ANY web host that gives you access to the file system, allows you to upload and edit files…
Creating a Simple Custom AI Assistant with OpenAI / ChatGPT
Creating a Simple Custom AI Assistant with OpenAI / ChatGPT Creating a Simple Custom AI Assistant with OpenAI / ChatGPT October 25, 2024 This tutorial goes through creating a simple AI Assistant using OpenAI’s “Assistant” feature.ย Much of the info contained in this tutorial is sourced directly from OpenAI’s documentation, albeit re-written in my own…
Backing Up Docker Volumes
Backing Up Docker Volumes Backing Up Docker Volumes October 24, 2024 In this tutorial we go through creating backups of docker volumes. We cover creating .tar and .zip backup files as well as complete separate docker volume backups of other volumes, finally we cover restoring backups of .tar and .zip files and restoring volume backups…
Keycloak Terms & Privacy Policy Configuration
Keycloak Terms & Privacy Policy Configuration Keycloak Terms & Privacy Policy Configuration September 30, 2024 When I first started using Keycloak earlier this year I almost immediately hit a heavy roadblock, how do you require user consent to your terms and conditions and privacy policy? After browsing the Keycloak forums it became apparent that multiple…
Keycloak Realm Mail Config
Keycloak Realm Mail Config Keycloak Realm Mail Config September 30, 2024 In this lightning fast tutorial we’ll configure email settings in a Keycloak Realm.ย Keycloak requires an external email service provider to auto send emails for account management. You can self-host an email service or use a commercial provider. Whichever way you go, you will…
Automate SSH Hardening with Ansible
Automate SSH Hardening with Ansible Automate SSH Hardening with Ansible September 28, 2024 In this lightning fast tutorial we’ll go through automating SSH server hardening using Ansible. This tutorial should work with either debain or fedora based systems, the installation process may differ based on distro. It requires that you have a remote sudo user…