-
build simple nginx application on K3s Cluster
Read More: build simple nginx application on K3s ClusterAfter we learn how to build and create k3s cluster on this article, we will try to build simple nginx application on K3s cluster with Let’s Encrypt for the SSL provider. These are the basic steps to build a simple Nginx application with HTTPS on a K3s cluster. You need to replace the placeholder values…
-
How to install Caddy and how to use it as webserver or reserve proxy
Read More: How to install Caddy and how to use it as webserver or reserve proxyCaddy is an open-source web server and reverse proxy that can be used to serve web content and handle SSL/TLS encryption. Here are the basic steps to install and use Caddy on a Linux-based system: To use Caddy as a web server, you need to create a Caddyfile and configure it with the appropriate settings.…
-
How to install nginx, php-fpm and mariadb using Ansible
Read More: How to install nginx, php-fpm and mariadb using AnsibleTo install Nginx, PHP-FPM, and MariaDB using Ansible, you can use the following steps: Install Ansible on your local machine by running the following command: Create a new playbook file called nginx-php-fpm-mariadb.yml and add the following content: This playbook will install Nginx, PHP-FPM, and MariaDB on all the hosts specified in your inventory file. Create…
-
Deploy Simple Application in Rancher With Nginx Ingress
Read More: Deploy Simple Application in Rancher With Nginx IngressIn the previous article, we have learned how to install Rancher and deploy Kubernetes. Now, we will deploy the application in Rancher.Other than using Rancher web UI, we can use cli commands to manage our Kubernetes cluster.We need to install kubectl in the server. Please run the command below to install kubectl: snap install kubectl…