/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.jamieweb.net
| | jo-m.ch
3.8 parsecs away

Travel
| | Shell Snippets SSH # SSH Keygen # ssh-keygen -o -a 100 -t ed25519 SSH Tunnel # ssh -N -L2001:localhost:80 somemachine Now you can access the website by going to http://localhost:2001/ SSH Proxy # ssh -q -N -D 5001 user@host # e.g. ssh -q -N -D 5001 pi4 You can now set localhost:5001 as a socks proxy in Firefox and it will appear as connecting from host. SSH port forwarding # ssh -R 12345:localhost:22 example.org "sleep 1000; exit" Forwards example.org's port 12345 to your local ssh port, even if your machine is not externally visible on the net. Now you can ssh localhost -p 12345 from example.org and you will log into your machine.
| | becomesovran.com
2.9 parsecs away

Travel
| | My post on how I like to manage servers. I cover SSH, networking, log rotation, and server management basics.
| | blog.miguelgrinberg.com
3.0 parsecs away

Travel
| | miguelgrinberg.com
| | hypernephelist.com
12.6 parsecs away

Travel
| Traefik is a modern, dynamic load-balancer that was designed specifically with containers in mind. It is able to react to service deployment events from many...