this post was submitted on 08 Jun 2023
85 points (100.0% liked)

Free and Open Source Software

713 readers
1 users here now

If it's free and open source and it's also software, it can be discussed here. Subcommunity of Technology.


This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.

founded 2 years ago
MODERATORS
 

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

you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 2 points 1 year ago (1 children)

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
[โ€“] [email protected] 3 points 1 year ago

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