Discussion
Loading...

#Tag

  • About
  • Code of conduct
  • Privacy
  • About Bonfire
#selfhosting
#selfhosting boosted
Zonefive@sh.itjust.works
@Zonefive@sh.itjust.works  ·  activity timestamp 30 minutes ago

Remote KVM recommendations

I have three networked Win10/11 PCs at our small family business that occasionally need to be accessed and maintained from my Fedora PC at home. I’ve used Google Remote Desktop for a while but it’s unreliable and also F Google.

Was looking at the Gl-Inet Comet products which look promising as they say they work without cloud access, but they’re a tad spendy. If it’s the best option I’m willing to drop the coin.

Are there better options?

Thanks!

  • Copy link
  • Flag this post
  • Block
Zonefive@sh.itjust.works
@Zonefive@sh.itjust.works  ·  activity timestamp 30 minutes ago

Remote KVM recommendations

I have three networked Win10/11 PCs at our small family business that occasionally need to be accessed and maintained from my Fedora PC at home. I’ve used Google Remote Desktop for a while but it’s unreliable and also F Google.

Was looking at the Gl-Inet Comet products which look promising as they say they work without cloud access, but they’re a tad spendy. If it’s the best option I’m willing to drop the coin.

Are there better options?

Thanks!

  • Copy link
  • Flag this post
  • Block
#selfhosting
#selfhosting boosted
Dawarich
@dawarich@mastodon.social  ·  activity timestamp 35 minutes ago

🚀 Dawarich 1.3.3 is out!

This release: various updates

📦 docker pull freikin/dawarich:1.3.3
📋 Changelog: https://github.com/Freika/dawarich/releases/tag/1.3.3

#Dawarich #SelfHosted #LocationTracking #Privacy #OpenSource

  • Copy link
  • Flag this post
  • Block
Dawarich
@dawarich@mastodon.social  ·  activity timestamp 35 minutes ago

🚀 Dawarich 1.3.3 is out!

This release: various updates

📦 docker pull freikin/dawarich:1.3.3
📋 Changelog: https://github.com/Freika/dawarich/releases/tag/1.3.3

#Dawarich #SelfHosted #LocationTracking #Privacy #OpenSource

  • Copy link
  • Flag this post
  • Block
#selfhosting
#selfhosting boosted
DB Tech
@dbtechyt@fosstodon.org  ·  activity timestamp 1 hour ago

HUGE NEWS from Docker with Docker Agents to let you build specialized AI dev teams, AND beefed up Docker Sandboxes with microVMs for ultimate security! Run autonomous AI workflows safely.

https://www.docker.com/blog/building-ai-teams-docker-sandboxes-agent

#selfhosted #homelab

Docker

Building AI Teams: How Docker Sandboxes and Docker Agent Transform Development

Learn how Docker Agent + Docker Sandboxes let AI agent teams build, test, and iterate safely in isolated microVM workspaces.
Sorry, no caption provided by author
Sorry, no caption provided by author
Sorry, no caption provided by author
  • Copy link
  • Flag this post
  • Block
DB Tech
@dbtechyt@fosstodon.org  ·  activity timestamp 1 hour ago

HUGE NEWS from Docker with Docker Agents to let you build specialized AI dev teams, AND beefed up Docker Sandboxes with microVMs for ultimate security! Run autonomous AI workflows safely.

https://www.docker.com/blog/building-ai-teams-docker-sandboxes-agent

#selfhosted #homelab

Docker

Building AI Teams: How Docker Sandboxes and Docker Agent Transform Development

Learn how Docker Agent + Docker Sandboxes let AI agent teams build, test, and iterate safely in isolated microVM workspaces.
Sorry, no caption provided by author
Sorry, no caption provided by author
Sorry, no caption provided by author
  • Copy link
  • Flag this post
  • Block
#selfhosting
#selfhosting boosted
Tinkerer@lemmy.ca
@Tinkerer@lemmy.ca  ·  activity timestamp 3 hours ago

⁂ Article

Netbird podman and traefik

Hey Everyone, I’m currently wanting to switch from Headscale to Netbird. It looks like Netbird is much easier to self host now except I can’t get it working with my current Traefik v3.6 config. Here is my config.yaml file for the routers and headers. Any ideas?

Everything loads up fine (from the logs) however I can’t go to the domain address. I have a CNAME record in cloudflare not proxied. The documentation says to set an A record of “netbird.mydomain.com” however wouldn’t that defeat the purpose of the reverse proxy? I have an A record setup already pointing to my public ip and everything gets sent to my traefik reverse proxy.

` ###http:

routers:

netbird-dashboard:
 rule: Host(`netbird.mydomain.com`)
 entryPoints:
 - https
 tls: {}
 service: dashboard
 priority: 1

netbird-grpc:
 rule: >
 Host(`netbird.mydomain.com`)
 && (PathPrefix(`/signalexchange.SignalExchange/`)
 || PathPrefix(`/management.ManagementService/`))
 entryPoints:
 - https
 tls: {}
 service: netbird-server-h2c
 priority: 100

 netbird-backend:
 rule: >
 Host(`netbird.mydomain.com`)
 && (PathPrefix(`/relay`)
 || PathPrefix(`/ws-proxy/`)
 || PathPrefix(`/api`)
 || PathPrefix(`/oauth2`))
 entryPoints:
 - https
 tls: {}
 service: netbird-server
 priority: 100

services:

 dashboard:
 loadBalancer:
 servers:
 - url: "http://netbird/"

 netbird-server:
 loadBalancer:
 servers:
 - url: "http://netbird/"

netbird-server-h2c:
 loadBalancer:
 servers:
 - url: "h2c://netbird:80"

___`

  • Copy link
  • Flag this article
  • Block
Tinkerer@lemmy.ca
@Tinkerer@lemmy.ca  ·  activity timestamp 3 hours ago

⁂ Article

Netbird podman and traefik

Hey Everyone, I’m currently wanting to switch from Headscale to Netbird. It looks like Netbird is much easier to self host now except I can’t get it working with my current Traefik v3.6 config. Here is my config.yaml file for the routers and headers. Any ideas?

Everything loads up fine (from the logs) however I can’t go to the domain address. I have a CNAME record in cloudflare not proxied. The documentation says to set an A record of “netbird.mydomain.com” however wouldn’t that defeat the purpose of the reverse proxy? I have an A record setup already pointing to my public ip and everything gets sent to my traefik reverse proxy.

` ###http:

routers:

netbird-dashboard:
 rule: Host(`netbird.mydomain.com`)
 entryPoints:
 - https
 tls: {}
 service: dashboard
 priority: 1

netbird-grpc:
 rule: >
 Host(`netbird.mydomain.com`)
 && (PathPrefix(`/signalexchange.SignalExchange/`)
 || PathPrefix(`/management.ManagementService/`))
 entryPoints:
 - https
 tls: {}
 service: netbird-server-h2c
 priority: 100

 netbird-backend:
 rule: >
 Host(`netbird.mydomain.com`)
 && (PathPrefix(`/relay`)
 || PathPrefix(`/ws-proxy/`)
 || PathPrefix(`/api`)
 || PathPrefix(`/oauth2`))
 entryPoints:
 - https
 tls: {}
 service: netbird-server
 priority: 100

services:

 dashboard:
 loadBalancer:
 servers:
 - url: "http://netbird/"

 netbird-server:
 loadBalancer:
 servers:
 - url: "http://netbird/"

netbird-server-h2c:
 loadBalancer:
 servers:
 - url: "h2c://netbird:80"

___`

  • Copy link
  • Flag this article
  • Block
#selfhosting
#selfhosting boosted
Fluchtkapsel
@fluchtkapsel@nerdculture.de  ·  activity timestamp 3 hours ago

For a few weeks I had some strange errors with my self-hosted webmail, Snappymail. After working for some time it complained that it couldn't connect to tcp://mydomain.tld:143. My email clients worked, though. The situation got worse a few days ago when I updated the server and rebooted it.

My webmail is hosted in a systemd-nspawn system container. I use such containers for a lot of different services.

For debugging purposes I tried some telnet and openssl s_client stuff today but I've been on the wrong track with that. ping'ing from the webmail container already failed. There was something more fundamental amiss.

#systemd #networkd #nspawn #nft #selfhosted

  • Copy link
  • Flag this post
  • Block
Fluchtkapsel
@fluchtkapsel@nerdculture.de  ·  activity timestamp 3 hours ago

For a few weeks I had some strange errors with my self-hosted webmail, Snappymail. After working for some time it complained that it couldn't connect to tcp://mydomain.tld:143. My email clients worked, though. The situation got worse a few days ago when I updated the server and rebooted it.

My webmail is hosted in a systemd-nspawn system container. I use such containers for a lot of different services.

For debugging purposes I tried some telnet and openssl s_client stuff today but I've been on the wrong track with that. ping'ing from the webmail container already failed. There was something more fundamental amiss.

#systemd #networkd #nspawn #nft #selfhosted

  • Copy link
  • Flag this post
  • Block
#selfhosting
#selfhosting boosted
StreamRadar
@StreamRadar@mastodon.social  ·  activity timestamp 4 hours ago

📺 🎥 Don't miss @cptbichez's live stream on Owncast! 🎥
Watch here: https://stream.ystrbag.xyz/

#chillvibes #relaxationmode #live #streaming #owncast #livestream #selfhosted

  • Copy link
  • Flag this post
  • Block
StreamRadar
@StreamRadar@mastodon.social  ·  activity timestamp 4 hours ago

📺 🎥 Don't miss @cptbichez's live stream on Owncast! 🎥
Watch here: https://stream.ystrbag.xyz/

#chillvibes #relaxationmode #live #streaming #owncast #livestream #selfhosted

  • Copy link
  • Flag this post
  • Block
#selfhosting
#selfhosting boosted
DB Tech
@dbtechyt@fosstodon.org  ·  activity timestamp 4 hours ago

BookStack users v25.12.9 just dropped, and it's a critical security release. Fixes a vulnerability where page content style code could be used for phishing/tracking. Update now!

https://github.com/BookStackApp/BookStack/releases/tag/v25.12.9

#selfhosted #homelab

GitHub

Release BookStack v25.12.9 · BookStackApp/BookStack

Security Release Update Instructions Update details on blog BookStack v25.12.9 has been released. This is a security release to address a vulnerability where style code in page content could be u...
Sorry, no caption provided by author
Sorry, no caption provided by author
Sorry, no caption provided by author
  • Copy link
  • Flag this post
  • Block
DB Tech
@dbtechyt@fosstodon.org  ·  activity timestamp 4 hours ago

BookStack users v25.12.9 just dropped, and it's a critical security release. Fixes a vulnerability where page content style code could be used for phishing/tracking. Update now!

https://github.com/BookStackApp/BookStack/releases/tag/v25.12.9

#selfhosted #homelab

GitHub

Release BookStack v25.12.9 · BookStackApp/BookStack

Security Release Update Instructions Update details on blog BookStack v25.12.9 has been released. This is a security release to address a vulnerability where style code in page content could be u...
Sorry, no caption provided by author
Sorry, no caption provided by author
Sorry, no caption provided by author
  • Copy link
  • Flag this post
  • Block
#selfhosting
#selfhosting boosted
Rusty Shackleford
@rusty__shackleford@mastodon.social  ·  activity timestamp 4 hours ago

RE: https://fedinet.waltuh.cyou/notice/B45KDV2ZE0Xcj0p196

They got flash on the fedi!

---
#fediverse #mastodon #pleroma #akkoma #gotosocial #friendica #pixelfed #loops #video #music #diy #media #flash #swf #creativity #programming #selfHosting #selfHosted #homeLab #hosting #socialMedia #art #expression #newgrounds #fedi #waltuhsLab #Yonle #waltuh #experimental #features #webDevelopment

  • Copy link
  • Flag this post
  • Block
Rusty Shackleford
@rusty__shackleford@mastodon.social  ·  activity timestamp 4 hours ago

RE: https://fedinet.waltuh.cyou/notice/B45KDV2ZE0Xcj0p196

They got flash on the fedi!

---
#fediverse #mastodon #pleroma #akkoma #gotosocial #friendica #pixelfed #loops #video #music #diy #media #flash #swf #creativity #programming #selfHosting #selfHosted #homeLab #hosting #socialMedia #art #expression #newgrounds #fedi #waltuhsLab #Yonle #waltuh #experimental #features #webDevelopment

  • Copy link
  • Flag this post
  • Block
#selfhosting
#selfhosting boosted
Jimmy B. :boba_tea:
@jimmyb@selfhosted.cafe  ·  activity timestamp 8 hours ago

I believe it's time to retire my #selfhosted #Ollama instance. My #RTX3080 can handle some models, but not the models (and sizes) that I actually need/want to use. Perhaps I can slap that 3080 into another rig for gaming or something...or maybe I can try using it for ComfyUI or image generation related. nkoHype

#NVIDIA #AI #GAI #GPU #selfhosting

  • Copy link
  • Flag this post
  • Block
Jimmy B. :boba_tea:
@jimmyb@selfhosted.cafe  ·  activity timestamp 8 hours ago

I believe it's time to retire my #selfhosted #Ollama instance. My #RTX3080 can handle some models, but not the models (and sizes) that I actually need/want to use. Perhaps I can slap that 3080 into another rig for gaming or something...or maybe I can try using it for ComfyUI or image generation related. nkoHype

#NVIDIA #AI #GAI #GPU #selfhosting

  • Copy link
  • Flag this post
  • Block
#selfhosting
#selfhosting boosted
DB Tech
@dbtechyt@fosstodon.org  ·  activity timestamp 8 hours ago

Traefik v3.7.0-ea.1 is here for Kubernetes users with NGINX Ingress annotation support, smart service failover, and new retry middleware for reliability. Check the docs for potential config changes

https://github.com/traefik/traefik/releases/tag/v3.7.0-ea.1

#selfhosted #homelab

GitHub

Release v3.7.0-ea.1 · traefik/traefik

Enhancements: [accesslogs, otel] Allow Stdio access logs alongsige OTLP logging (#12307 @Mulgish) [acme] Add CertificateTimeout ACME configuration option (#12278 @ceko) [k8s/ingress-nginx] Support...
Sorry, no caption provided by author
Sorry, no caption provided by author
Sorry, no caption provided by author
  • Copy link
  • Flag this post
  • Block
DB Tech
@dbtechyt@fosstodon.org  ·  activity timestamp 8 hours ago

Traefik v3.7.0-ea.1 is here for Kubernetes users with NGINX Ingress annotation support, smart service failover, and new retry middleware for reliability. Check the docs for potential config changes

https://github.com/traefik/traefik/releases/tag/v3.7.0-ea.1

#selfhosted #homelab

GitHub

Release v3.7.0-ea.1 · traefik/traefik

Enhancements: [accesslogs, otel] Allow Stdio access logs alongsige OTLP logging (#12307 @Mulgish) [acme] Add CertificateTimeout ACME configuration option (#12278 @ceko) [k8s/ingress-nginx] Support...
Sorry, no caption provided by author
Sorry, no caption provided by author
Sorry, no caption provided by author
  • Copy link
  • Flag this post
  • Block
Log in

Encryptr.net Social

This is a forward thinking server running the Bonfire social media platform.

LGBTQA+ and BPOC friendly.

Encryptr.net Social: About · Code of conduct · Privacy ·
Encryptr.net social · 1.0.0-rc.3.6 no JS en
Automatic federation enabled
  • Explore
  • About
  • Code of Conduct
Home
Login