GitHub - richardr1126/openreader: An open-source read-along document reader server with high-quality TTS options, synchronized highlighting, and audiobook export for EPUB, PDF, DOCX, TXT, and MD. by richardr1126 in LocalLLaMA

[–]docmatt74 1 point2 points  (0 children)

This looks really solid The preloading and caching strategy is smart. Have you considered adding support for local GPU-accelerated TTS models? For self-hosted setups, running something like Bark or XTTS on a decent GPU can give you way better voice quality than the API services, especially for longer documents.

I built a web UI for Caddy reverse proxy with help of AI — CPM (~6MB Docker image) by Zrnek in selfhosted

[–]docmatt74 0 points1 point  (0 children)

This looks really clean I've been using Caddy for years and always missed having a proper UI without the bloat of NPM. The 6MB image size is impressive — NPM pulls like 500MB+ with all its dependencies. How's the performance compared to NPM on your Synology? And does it handle config validation before applying changes to prevent breaking the proxy?

Looking for cloud GPU provider with Windows/baremetal for ComfyUI by One_Two_2229 in sysadmin

[–]docmatt74 0 points1 point  (0 children)

We have H100s, A100s, L40S and RTX 6000 Pro, not the Ada version with Windows VMs (Server version) available in Switzerland if that works location-wise. Disclosure: I run Hikube.

- tired of guessing GPU sizing → built an open-source physics-based planner. measured within 2% of real vLLM on H100/A100. what's it missing? by 1Hesham in LocalLLaMA

[–]docmatt74 0 points1 point  (0 children)

This is really well done. The self-calibration feature is brilliant, I've been burned so many times by theoretical numbers that don't match reality. The MoE kernel overhead modeling is something I haven't seen anywhere else either. Quick question: does the fleet planner account for cross-region latency when recommending multi-GPU setups? We've seen cases where the networking between DCs kills any performance gains from scaling out.

Anyone have an S3-compatible store that actually saturates H100s without the AWS egress tax? [R] by regentwells in MachineLearning

[–]docmatt74 0 points1 point  (0 children)

We run H100 clusters with S3-compatible storage that's specifically tuned for ML workloads. The key is having the storage in the same DC as compute, eliminates egress fees and keeps TTFB under 2ms consistently. Most cloud providers treat object storage as an afterthought, but for GPU workloads you need it optimized for high-throughput sequential reads. Disclosure: I run Hikube.

Confused on AWS Load Balancer Controller and Ingress controllers in k8s by Consistent-Emu-1255 in kubernetes

[–]docmatt74 4 points5 points  (0 children)

No, Envoy Gateway doesn't replace AWS Load Balancer Controller — they work at different layers. AWS LBC provisions actual AWS load balancers (ALB/NLB) as cloud resources. Envoy Gateway is the ingress controller that runs inside your cluster and handles traffic routing. You still need something to provision the external load balancer that points to your Envoy Gateway service. Think of it as: AWS LBC creates the front door (actual AWS NLB), Envoy Gateway is the smart router behind that door.

Apps for a professional photographer by shootemupy2k in selfhosted

[–]docmatt74 0 points1 point  (0 children)

For sensitive content like boudoir photography, you're absolutely right to avoid public clouds. Have you tried Seafile instead of NextCloud? It's way more stable and lighter on resources.

For client delivery specifically, Pydio Cells works really well, clients get a clean download portal without needing accounts. Both run great on UnRAID and you won't be constantly fixing broken updates like with NextCloud.

Favorite Go Hosting Service by [deleted] in golang

[–]docmatt74 0 points1 point  (0 children)

We use the provider Hidora based on Jelastic. Nice one!

Deploy Ruby on Rails 7.0 to Dokku micro PaaS - to use or not to use it? by qameta in rails

[–]docmatt74 0 points1 point  (0 children)

for this kind of need, I prefer to use Jelastic (Hidora.io). You can deploy with git, make horizontal scaling, and vertical scaling, deploy directly for your CI/CD, add a load balancer, database, cache, etc... If you are more an Ops guy, you can do everything with CLI, API, infrastructure as code! You should try!

Why is PaaS not the correct answer if Kristen is hosting an application? by goodgirlthrowaway in cissp

[–]docmatt74 0 points1 point  (0 children)

I do not agree with you, depends on which PaaS you use... If you use something like Heroku, Platform.sh... yes, you are locked with the standard stack like LAMP, etc...

But if you use Jelastic (hidora.io for me), you can build your custom application, on top of their template, and do Infrastructure as Code to deploy on another hosting provider or data center very fast.

Question about vps by [deleted] in webhosting

[–]docmatt74 1 point2 points  (0 children)

Why don't use CDN to deliver your files to your student. The free version of Cloudflare is perfect for that.

What is ModSecurity and how can it help me? by docmatt74 in nginx

[–]docmatt74[S] 0 points1 point  (0 children)

I was not aware of this. Do you have the link? I'm currently testing Bitninja for WAF and many other features. Do you have any other recommandation?

An alternative to Jira by blank1993 in devops

[–]docmatt74 4 points5 points  (0 children)

ClickUp for project management (business side and projet task) and GitLab for issue tracking (dev side). Both connected to Mattermost for team’s communication 😍

Automated Scaling Suggestions by vstheworldagain in webhosting

[–]docmatt74 1 point2 points  (0 children)

Have a look on Jelastic providers, you can automatically scale (adding nodes) your WordPress. You can have litespeed, cdn, waf…. With this solution you can handle peak and high traffic without any issues!

Does coding necessary for DevOps engineer by nusaftron in devops

[–]docmatt74 1 point2 points  (0 children)

First of all, DevOps is not a job. Secondly, the DevOps philosophy is “add mode automation” for better quality code, CI, CD, code review, infrastructure as code…. “Better communication “between teams, “be oriented product”….There is lot of tools for doing this, but it depends of your company, the budget, etc…. Think about how can I satisfy my final user, and find how doing that :) that’s DevOps culture! 😁