

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


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


as a single user lemmy, no


nice job


I have my node running now



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


I need this in my life, I want to know who else is holding on to me


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


Maybe also talk to nextcloud and see if the vjournel could be improved?


You can only order more kit, if you share it out. With every member of this community!


My god man, I need to add that site to my list. I don’t need it as I’ve been homelabing for many years, also support a SaaS app to keep me sharp.
But that site should be everywhere


If your looking for a great DNS provider, OVH is rock solid. They also register domains, I have all my domains and zones with them.
Also a dedi and a VPS, also they have an API for DNS updates that can be used to get certificates for internal domains


You could go HTTP only if your happy that anything on the network could see your traffic, I don’t trust anything on my networks so HTTPS everything.
Depending on if you have a proxy in front of vaultwarden will depend on what you need setup, I have nginx and traefik in front of my instance.


If you’re looking for an IDE that will just allow you to code, have a look at pulsar. The atom fork that works
I’ve always used free -mh to check memory, so I would say you have 4gb available.