Explore >> Select a destination


You are here

nsirap.com
| | nbailey.ca
3.3 parsecs away

Travel
| | Kubernetes is our generation's Asbestos.
| | hjr265.me
2.5 parsecs away

Travel
| | I have been making software for over a decade now. And one thing I have learned to love through this is automation. After all, it is only a programmer who will spend hours automating a task that takes a few minutes to do. There are good reasons for this. I have a self-hosted GitLab instance for Furqan Software. And if you are self-hosting tools and services, the critical thing to do after ensuring security is automating backups.
| | ectobit.com
0.9 parsecs away

Travel
| | Find out how to properly install docker with buildx plugin, containerd and kubectl on Ubuntu 22.04 desktop and avoid the "Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details" problem
| | blog.chand1012.dev
27.6 parsecs away

Travel
| In this tutorial, we will be setting up a Flask server using Gunicorn and NGINX on Ubuntu 18.04 LTS. Requirements Any system running Ubuntu 18.04 LTS with SSH enabled. An SSH client. Installing After connecting via SSH to your server as root, run the following commands to install the required programs: apt update apt upgrade -y apt install nginx python3 python3-pip python3-venv This will install Python, NGINX, and the virtual environment needed to run the app.