Ask HN: What are your favourite self-hosted tools?
121–130 of 147 posts
Re: Ask HN: What are your favourite self-hosted tools?
#122I wish I had a success story to tell, but I've increasingly moved away from self-hosting. Whenever something breaks I have to pull myself away from the programming I'm enjoying and go fix it. And if something breaks when I've already had a long day working under a tight deadline for a client, it feels like a disaster.
Re: Ask HN: What are your favourite self-hosted tools?
#123Re: Ask HN: What are your favourite self-hosted tools?
#124- znc bouncer - caddy server that proxies to a few sites - libreelec/kodi - dnscrypt server
Re: Ask HN: What are your favourite self-hosted tools?
#125Earlier quoted context omitted.
Looking at Netdisco I have 12 VLANs. ISP1, ISP2 (from Dad's house across the valley), OSPF backbone, DMZ, LAN, Guest, Cameras, Servers, Japan, Kids, Management and Test. Everything passes thru PF and only exposes services as required. The Guest VLAN, for example, has no way to get to the rest of the VLANs. Camera VLAN can only talk to the DVR software, etc. The important thing with securing my public IPs (as with sec…
Wow thanks a lot for the details this is not my field haha regarding the tech you mentioned in the beginning. Curious what your family thinks having to run Linux. It's my primary os myself with i3-wm. People usually complain "install apps command line" ui, etc .. whatever Ubuntu being as supported as it is that UI is so slow/bloated IMO. I have Windows as well but use Virtual box and Linux to access the web if it's n…
Also, websocket is just a protocol upgrade slapped on http/https, so it normally goes over 80/443. If someone's running it on another port, it's probably cause the server they have on their normal http/https doesn't work well with websockets.
Re: Ask HN: What are your favourite self-hosted tools?
#126Earlier quoted context omitted.
Since you're looking to collect anecdata, I've had 100% uptime from my self-hosted GitLab instance, which has been online for about a year. GitHub may be on par with that, but it's hard to beat 100%.
Just curious : don't you apply updates ? I self host my gitlab and when there's an update it goes down for several minutes (well actually I don't know if it's unusable, haven't tried, but with the backup and the updates, it's long) I'm the only one working on it, so that's not a problem for me. Still, it takes time.
Re: Ask HN: What are your favourite self-hosted tools?
#127Earlier quoted context omitted.
Looking at Netdisco I have 12 VLANs. ISP1, ISP2 (from Dad's house across the valley), OSPF backbone, DMZ, LAN, Guest, Cameras, Servers, Japan, Kids, Management and Test. Everything passes thru PF and only exposes services as required. The Guest VLAN, for example, has no way to get to the rest of the VLANs. Camera VLAN can only talk to the DVR software, etc. The important thing with securing my public IPs (as with sec…
Wow thanks a lot for the details this is not my field haha regarding the tech you mentioned in the beginning. Curious what your family thinks having to run Linux. It's my primary os myself with i3-wm. People usually complain "install apps command line" ui, etc .. whatever Ubuntu being as supported as it is that UI is so slow/bloated IMO. I have Windows as well but use Virtual box and Linux to access the web if it's n…
Re: Ask HN: What are your favourite self-hosted tools?
#128I host a LOT of things! :) I'm having 5 dedicated servers at Online.net + Small VPS at Scaleway & OVH; + some backup boxes at friends behind an ADSL. Tinc for the private network Proxmox & CBSD for VMs/FreeBSD Jails Prometheus ELK Gitlab. Used gogs in the past but it missed features I needed Etherpad Hackpad nginx + dehydrated (let's encrypt client) PowerDNS + PowerAdmin Modoboa (email stack. postfix/amavis/web inter…
Re: Ask HN: What are your favourite self-hosted tools?
#129Earlier quoted context omitted.
Looking at Netdisco I have 12 VLANs. ISP1, ISP2 (from Dad's house across the valley), OSPF backbone, DMZ, LAN, Guest, Cameras, Servers, Japan, Kids, Management and Test. Everything passes thru PF and only exposes services as required. The Guest VLAN, for example, has no way to get to the rest of the VLANs. Camera VLAN can only talk to the DVR software, etc. The important thing with securing my public IPs (as with sec…
Wow thanks a lot for the details this is not my field haha regarding the tech you mentioned in the beginning. Curious what your family thinks having to run Linux. It's my primary os myself with i3-wm. People usually complain "install apps command line" ui, etc .. whatever Ubuntu being as supported as it is that UI is so slow/bloated IMO. I have Windows as well but use Virtual box and Linux to access the web if it's n…
I started my Dad on Ubuntu around 2008, and he hasn't used anything else since. Shortly thereafter my Mom, then my Sisters. Most recently my Step-mom, and Grandparents have gone to Ubuntu.
When I got some castoff laptops from work, I turned them into Sugar notebooks for my kids, and once that became too limiting for them I helped them install mainline Debian. Some of them run Gnome and my oldest runs fvwm.
My wife still runs Windows because of inertia, more than anything TBH.
In my experience, I've only had 1 peripheral that someone has bought that was totally unusable due to drivers (scanner), and the only programs my relatives have asked for that weren't available were my kids wanting to play Roblox, which I didn't want them playing anyways. Thanks to Minetest and buying most Humble Indie bundles I actually have a pretty good library of Linux games for them to play, so there hasn't been much bellyaching from them. Well, that and the Windows gaming/home theatre PC.
I've gone to a 2 strikes and you're out policy on Windows installs. If I have to re-install it for you more than one, and you're either getting Linux or finding someone else to fix your computer. My Grandparents got caught on this policy, but my stepmom actually asked for "That system that Dad has that doesn't get viruses". Happy ever since.
Most people that aren't highly technical tend be served by Firefox/Thunderbird/LibreOffice for 99.99% of their needs. It's mostly Facebook these days TBH.
It makes support dead simple. no-ip.com and SSH let me fix almost anything remotely, and no one has every gotten pwned that I know of.
Other people have answered the port question, but I'll try to go at a slightly lower level. Each open port will have a program running on the host that has opened a listening socket on that port. Netstat can help you find out what is listening, and on what interface/port. As a rule, only root can open ports under 1024, and any well written server will drop all non-required privs. You can check with the ps command. This is somewhat enforced on some OSs, eg OpenBSD with pledge.
From a security standpoint you should verify that you know and understand every server listening on a socket, which interfaces they are bound to (netstat asterisk means all interfaces), and whether they are exposed to the internet via direct interface/proxy/port forward/etc.
One trick to secure services that need remote access: if the service is only for technical users, you can give them each an account with no interactive shell, and then they can ssh port-forward to the port they want to access. Eg. you can make 3389 (RDP) only listen on the local LAN or the loopback device, ssh to your router with port forwarding local port 3399 (or whatever), to remote IP:3389 and point your local rdp client to localhost:3399. Great for ad-hoc limited VPN type connections. That way you only have to be aware of SSH remote holes, and not the more-likely RDP server.
Hopefully if any of this is incorrect, someone will correct me
Re: Ask HN: What are your favourite self-hosted tools?
#130I host a LOT of things! :) I'm having 5 dedicated servers at Online.net + Small VPS at Scaleway & OVH; + some backup boxes at friends behind an ADSL. Tinc for the private network Proxmox & CBSD for VMs/FreeBSD Jails Prometheus ELK Gitlab. Used gogs in the past but it missed features I needed Etherpad Hackpad nginx + dehydrated (let's encrypt client) PowerDNS + PowerAdmin Modoboa (email stack. postfix/amavis/web inter…
How is your experience with online.net when it comes to dedicated?
Support is fast and always reactive as well.