

I think you miss understand, if ha has the broker and a mesh node. Then your node could just send a message home and your home node would post the message to mqtt


I think you miss understand, if ha has the broker and a mesh node. Then your node could just send a message home and your home node would post the message to mqtt


FYI: home assistant can run an Mqtt server, so you could still post messages to it over meshtastic


HA will connect to almost anything, maybe there is a connector for your AC unit and there are many air quality sensors


Yes I run my install on a pi5, upgraded from a pi4.


This has been asked before, the answer is don’t use mobile to edit spreadsheets


As an IT admin, I can confirm that we are everything.
Don’t mess with IT, they can make your job even more difficult


Also on top of that, find time to keep it up to date. If leave it rot things will get harder to maintain.
I sit down once a week and go over all the updates needed, both the docker hosts and all the images they run.


I’ve always used free -mh to check memory, so I would say you have 4gb available.


OVH have both an API that use and will register a .at domain


as a single user lemmy, no


nice job


Moved from subsonic to jellyfin, never looked back. Jellyfin does music and movies and TV shows, the only bit I miss is jukebox mode


If your DNS host has an API, you can get any certificate you like for the host.
e.g. a cert for server.example.com
Even though that host doesn’t exist in public DNS


yes the web server


apt/yum/dnf install nginx, listen on public IP of VPS, use proxy_pass to forward to your internal IP
server {
listen [::]:443 ssl;
http2 on;
server_name service.example.com;
root /var/data/websites/holding;
index index.php index.html index.htm;
#SSL setting
ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;
add_header X-Clacks-Overhead "GNU Terry Pratchett";
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always;
# access_log /var/log/nginx/service-access.log main;
access_log off;
location / {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto "https";
proxy_set_header X-SECURE-REQUEST "true";
proxy_set_header Host $http_host;
proxy_pass http://192.168.1.2/; #IP of the service over the VPN
}
}


this, nginx config is simple once you know how


Not seen this on the list https://kanboard.org/
It’s a php app and very good


I would recommend nextcloud, there is a deck mobile app too


Ssh-ca is amazing, built my own with small step ca
What about small step sash ca?
I’ve been using it to secure all my stuff for over a year, no more copying keys about