k4j8

joined 2 years ago
[–] k4j8@lemmy.world 12 points 4 weeks ago

Caddy has this feature built-in. It looks nice too.

recipes.local {
	root * /srv
	file_server
}

https://caddyserver.com/docs/caddyfile/directives/file_server

There's also File Browser.

[–] k4j8@lemmy.world 5 points 1 month ago (3 children)

wg-easy

Agree, highly recommend this and/or Tailscale.

[–] k4j8@lemmy.world 3 points 2 months ago (1 children)

Great list! If you already have the Raspberry Pi devices, great. If you were going to buy some, I would look at thin clients instead. Low-power, cheaper, more powerful, can use real hard drives instead of SD cards or adapters, and x86 instead of ARM. I have an HP T630 I like but I hear good things about the Dell Wyse 5070 too.

[–] k4j8@lemmy.world 3 points 3 months ago

I really like Vikunja and use it individually both personally and professionally. It meets all of your criteria except tracking hours. They have a nice demo too: https://try.vikunja.io/.

[–] k4j8@lemmy.world 1 points 3 months ago

I was going to say that Finamp doesn't support offline filtering by artists, but when looking for the open issue I just found out the beta does support this! Awesome!

[–] k4j8@lemmy.world 2 points 6 months ago

As others have said, Nextcloud for files/calendar and Tailscale for VPN is your answer.

Nextcloud can be installed in several ways, one of which is Docker Compose. Docker Compose is flexible but requires learning a bit, although you can use it for most self-hosted software.

[–] k4j8@lemmy.world 1 points 7 months ago

We’ve integrated a new REST API and embedded web server directly into the pihole-FTL binary. This eliminates the need for lighttpd and PHP, reducing the installation footprint and boosting performance.

Very nice!

[–] k4j8@lemmy.world 0 points 8 months ago (1 children)

I host Caddy and Vaultwarden using Docker. The traffic into the reverse proxy, Caddy, works over port 443, not 1808 or 1443. Using the Caddyfile, you can tell Caddy which port to send the traffic over.

Caddy docker-compose.yml

services:
  caddy:
    ports:
      - "80:80"
      - "443:443"

Caddyfile, although there are other ways to do this

*.example.com {
        @vaultwarden host vaultwarden.example.com
        handle @vaultwarden {
                reverse_proxy :11808
        }

Vaultwarden docker-compose.yml

services:
  vaultwarden:
    ports:
      - 11808:80
[–] k4j8@lemmy.world 0 points 10 months ago (1 children)

I think it's cool you're trying to find ways to get into this. If the goal is to learn, why not deploy the services on your laptop? They won't be available when the computer is off of course, but you would still get the full experience. Even a low-spec laptop will be better than a cheap VPS.