• 0 Posts
  • 22 Comments
Joined 1 year ago
cake
Cake day: October 1st, 2023

help-circle









  • Assuming it’s a Linux server at home and you can use SSH on your work computer, there’s a couple ways to do this.

    • Install a web based terminal client
    • Setup Cloudflare tunnels on your home server and use the the SSH proxy. I do this with a simple helper in ~/.ssh/config:
    Match host "*.cf"
      ProxyCommand /usr/local/bin/cloudflared access ssh --hostname $(echo %h | sed 's/\.cf$/.homelab.nz/')
      ForwardAgent yes
    



  • The reputation problem with hosting email at home is that most residential IPs are blacklisted.

    The way around this is to relay your mail through another server (all SMTP servers support this, it’s often called a “smarthost”). This can either be an SMTP server you setup on a VPS with a clean IP or a commercial SMTP relay like Amazon SES. Cloudflare tunnels are for inbound traffic and can’t help with this.

    Delivering email to a home SMTP server doesn’t have any reputation challenges, you just need to expose port 25 on your SMTP server to the internet (or again proxy it somehow).