data retention

Simplifying Data Retention Policies: A Guide for Your Organization

Introduction Have you ever cleaned out your closet and accidentally donated a favorite sweater? Or maybe you deleted a cherished photo while trying to free up space…

Data Analysis

The Art and Science of Data Analysis: Turning Information into Insights

Data is everywhere, from social media posts to online searches, capturing the pulse of our digital world. But this vast sea of information is only valuable if…

nginx proxy

How to forward proxy nginx to custom port

This is a sample nginx proxy config for forwarding nonstandard SSL port to other ip/domain with a custom port, not 443 standard https port server { listen…

cpu vs vpu

CPU vs VPU Processing Speed: Which is Faster?

CPU (Central Processing Unit) and VPU (Vector Processing Unit) are two types of processors commonly used in various devices, from smartphones to desktop computers. Processing speed is…

backup proxmox

easy way to backup proxmox vm/ct

1. Access the Proxmox Web Interface: Open a web browser and navigate to the Proxmox server’s IP address or hostname, followed by port 8006 (e.g., https://192.168.1.100:8006). Log…

docker

Howto deploy wordpress using docker compose

This is how you can use docker compose to run WordPress on it First make docker-compose.yml with this content version: ‘2’ services: db: image: mysql:5.7 volumes: -…