I just recently started playing around with an old pc as my homeserver and am curious of any recommendations for lesser known self hostable foss software that you would recommend

  • @pattern@beehaw.org
    link
    fedilink
    21 year ago

    Honestly I started using traefik first and I agree, the learning curve is steep. I’m only just now starting to understand what my labels are doing. But now, I’ve tried caddy and literally cannot get it to work, or find how to port what I have on traefik over to caddy lol.

    • @DengueDucky@lemmy.ml
      link
      fedilink
      11 year ago

      Here are all the steps after installing Caddy to create a reverse proxy with SSL:

      1. Open the /etc/caddy/Caddyfile file
      2. Add the following, replacing the domain and port with those that you want to use.

      subdomain.example.com {

        reverse_proxy localhost:8080
      

      }

      1. Restart Caddy with systemctl restart caddy
      • @pattern@beehaw.org
        link
        fedilink
        31 year ago

        Super interesting. I’ll have to experiment with this, the guides I found were not this straight forward. Thanks!