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

  • DengueDucky
    link
    fedilink
    arrow-up
    2
    ·
    1 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
      arrow-up
      3
      ·
      1 year ago

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