Explore >> Select a destination


You are here

golb.hplar.ch
| | sylvaindurand.org
0.8 parsecs away

Travel
| | [AI summary] This article explains how to set up a Wireguard VPN on various platforms, highlighting its advantages over OpenVPN and providing detailed configuration steps for servers and clients.
| | blog.anantshri.info
1.3 parsecs away

Travel
| | Quick notes on how to setup wireguard on 20..04 Best guide i could find : https://www.linuxbabe.com/ubuntu/wireguard-vpn-server-ubuntu But still pieces missing so trying to write this and make those pieces sorted Base OS : ubuntu 20.04 Install software sudo apt-get install wireguard wireguard-tools Configure Wireguard Server side 2.1. Configure Public / Private Key pair for server...
| | geoff.tuxpup.com
1.7 parsecs away

Travel
| | Reverse-Proxying HTTPS Traffic to a Server in my Basement Using Caddy and Wireguard I've been experimenting with new web services lately, some of which I'd like to open up to my mobile devices. Punching a hole through my home network firewall is unappealing, though, as is standing up a new VPS for each one I'd like to kick around. I already feel like I've got too many VPS instances. So, naturally, the way to fix it is to add one more.
| | blog.chand1012.dev
16.9 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.