home.social

#fail2ban — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #fail2ban, aggregated by home.social.

fetched live
  1. "fail2ban jail to block HTTP probing"

    I’ve hardened my VPS with fail2ban to stop WordPress brute‑force attacks, but a recent traffic spike revealed a flood of GET probes searching for vulnerable files. One more fail2ban filter should quickly block this malicious scanning...

    🔗 ricard.dev/fail2ban-jail-to-bl

    #Linux #fail2ban

  2. "fail2ban jail to block HTTP probing"

    I’ve hardened my VPS with fail2ban to stop WordPress brute‑force attacks, but a recent traffic spike revealed a flood of GET probes searching for vulnerable files. One more fail2ban filter should quickly block this malicious scanning...

    🔗 ricard.dev/fail2ban-jail-to-bl

    #Linux #fail2ban

  3. "fail2ban jail to block HTTP probing"

    I’ve hardened my VPS with fail2ban to stop WordPress brute‑force attacks, but a recent traffic spike revealed a flood of GET probes searching for vulnerable files. One more fail2ban filter should quickly block this malicious scanning...

    🔗 ricard.dev/fail2ban-jail-to-bl

    #Linux #fail2ban

  4. "fail2ban jail to block HTTP probing"

    I’ve hardened my VPS with fail2ban to stop WordPress brute‑force attacks, but a recent traffic spike revealed a flood of GET probes searching for vulnerable files. One more fail2ban filter should quickly block this malicious scanning...

    🔗 ricard.dev/fail2ban-jail-to-bl

    #Linux #fail2ban

  5. "fail2ban jail to block HTTP probing"

    I’ve hardened my VPS with fail2ban to stop WordPress brute‑force attacks, but a recent traffic spike revealed a flood of GET probes searching for vulnerable files. One more fail2ban filter should quickly block this malicious scanning...

    🔗 ricard.dev/fail2ban-jail-to-bl

    #Linux #fail2ban

  6. @nibbs

    You have already found the core issue: a ban on VM2 is too late.

    VM2 does see the real client address in the HTTP logs if NPM passes X-Forwarded-For correctly, but at the network layer every connection to VM2 still originates from NPM on VM1. Therefore an nftables/UFW rule on VM2 can only block NPM — which is not exactly the intended security feature.

    For your setup, I would put the actual enforcement at the ingress point:

    • Run Fail2Ban on VM1.
    • Parse the NPM access/error logs there.
    • Let Fail2Ban add/remove bans locally on VM1.
    • Ensure NPM logs the real client IP, and only trust forwarded-IP headers from proxies you actually control.
    • Keep VM2 restricted so it accepts service traffic only from VM1/NPM where possible.

    Having Fail2Ban on VM2 execute remote firewall actions on VM1 via SSH can work, but it is basically building a small, brittle distributed ban system yourself: SSH keys, narrowly scoped sudo rules, reliable unban actions, error handling, and so on.

    Alternative:
    If you want detection from several VMs/services but enforcement centrally at NPM, CrowdSec is a more natural fit. Run agents where the relevant logs live, use a central LAPI, and run a bouncer at VM1/NPM. Then the components are designed to exchange decisions instead of hoping two independent Fail2Ban installations telepathically coordinate.

    Also: do not use set_real_ip_from 0.0.0.0/0 just to make X-Forwarded-For work. That turns a client-supplied header into an IP-spoofing API.

    #SelfHosting #ReverseProxy #Fail2Ban #CrowdSec #NginxProxyManager

  7. @nibbs

    You have already found the core issue: a ban on VM2 is too late.

    VM2 does see the real client address in the HTTP logs if NPM passes X-Forwarded-For correctly, but at the network layer every connection to VM2 still originates from NPM on VM1. Therefore an nftables/UFW rule on VM2 can only block NPM — which is not exactly the intended security feature.

    For your setup, I would put the actual enforcement at the ingress point:

    • Run Fail2Ban on VM1.
    • Parse the NPM access/error logs there.
    • Let Fail2Ban add/remove bans locally on VM1.
    • Ensure NPM logs the real client IP, and only trust forwarded-IP headers from proxies you actually control.
    • Keep VM2 restricted so it accepts service traffic only from VM1/NPM where possible.

    Having Fail2Ban on VM2 execute remote firewall actions on VM1 via SSH can work, but it is basically building a small, brittle distributed ban system yourself: SSH keys, narrowly scoped sudo rules, reliable unban actions, error handling, and so on.

    Alternative:
    If you want detection from several VMs/services but enforcement centrally at NPM, CrowdSec is a more natural fit. Run agents where the relevant logs live, use a central LAPI, and run a bouncer at VM1/NPM. Then the components are designed to exchange decisions instead of hoping two independent Fail2Ban installations telepathically coordinate.

    Also: do not use set_real_ip_from 0.0.0.0/0 just to make X-Forwarded-For work. That turns a client-supplied header into an IP-spoofing API.

    #SelfHosting #ReverseProxy #Fail2Ban #CrowdSec #NginxProxyManager

  8. @nibbs

    You have already found the core issue: a ban on VM2 is too late.

    VM2 does see the real client address in the HTTP logs if NPM passes X-Forwarded-For correctly, but at the network layer every connection to VM2 still originates from NPM on VM1. Therefore an nftables/UFW rule on VM2 can only block NPM — which is not exactly the intended security feature.

    For your setup, I would put the actual enforcement at the ingress point:

    • Run Fail2Ban on VM1.
    • Parse the NPM access/error logs there.
    • Let Fail2Ban add/remove bans locally on VM1.
    • Ensure NPM logs the real client IP, and only trust forwarded-IP headers from proxies you actually control.
    • Keep VM2 restricted so it accepts service traffic only from VM1/NPM where possible.

    Having Fail2Ban on VM2 execute remote firewall actions on VM1 via SSH can work, but it is basically building a small, brittle distributed ban system yourself: SSH keys, narrowly scoped sudo rules, reliable unban actions, error handling, and so on.

    Alternative:
    If you want detection from several VMs/services but enforcement centrally at NPM, CrowdSec is a more natural fit. Run agents where the relevant logs live, use a central LAPI, and run a bouncer at VM1/NPM. Then the components are designed to exchange decisions instead of hoping two independent Fail2Ban installations telepathically coordinate.

    Also: do not use set_real_ip_from 0.0.0.0/0 just to make X-Forwarded-For work. That turns a client-supplied header into an IP-spoofing API.

    #SelfHosting #ReverseProxy #Fail2Ban #CrowdSec #NginxProxyManager

  9. @nibbs

    You have already found the core issue: a ban on VM2 is too late.

    VM2 does see the real client address in the HTTP logs if NPM passes X-Forwarded-For correctly, but at the network layer every connection to VM2 still originates from NPM on VM1. Therefore an nftables/UFW rule on VM2 can only block NPM — which is not exactly the intended security feature.

    For your setup, I would put the actual enforcement at the ingress point:

    • Run Fail2Ban on VM1.
    • Parse the NPM access/error logs there.
    • Let Fail2Ban add/remove bans locally on VM1.
    • Ensure NPM logs the real client IP, and only trust forwarded-IP headers from proxies you actually control.
    • Keep VM2 restricted so it accepts service traffic only from VM1/NPM where possible.

    Having Fail2Ban on VM2 execute remote firewall actions on VM1 via SSH can work, but it is basically building a small, brittle distributed ban system yourself: SSH keys, narrowly scoped sudo rules, reliable unban actions, error handling, and so on.

    Alternative:
    If you want detection from several VMs/services but enforcement centrally at NPM, CrowdSec is a more natural fit. Run agents where the relevant logs live, use a central LAPI, and run a bouncer at VM1/NPM. Then the components are designed to exchange decisions instead of hoping two independent Fail2Ban installations telepathically coordinate.

    Also: do not use set_real_ip_from 0.0.0.0/0 just to make X-Forwarded-For work. That turns a client-supplied header into an IP-spoofing API.

    #SelfHosting #ReverseProxy #Fail2Ban #CrowdSec #NginxProxyManager

  10. @nibbs

    You have already found the core issue: a ban on VM2 is too late.

    VM2 does see the real client address in the HTTP logs if NPM passes X-Forwarded-For correctly, but at the network layer every connection to VM2 still originates from NPM on VM1. Therefore an nftables/UFW rule on VM2 can only block NPM — which is not exactly the intended security feature.

    For your setup, I would put the actual enforcement at the ingress point:

    • Run Fail2Ban on VM1.
    • Parse the NPM access/error logs there.
    • Let Fail2Ban add/remove bans locally on VM1.
    • Ensure NPM logs the real client IP, and only trust forwarded-IP headers from proxies you actually control.
    • Keep VM2 restricted so it accepts service traffic only from VM1/NPM where possible.

    Having Fail2Ban on VM2 execute remote firewall actions on VM1 via SSH can work, but it is basically building a small, brittle distributed ban system yourself: SSH keys, narrowly scoped sudo rules, reliable unban actions, error handling, and so on.

    Alternative:
    If you want detection from several VMs/services but enforcement centrally at NPM, CrowdSec is a more natural fit. Run agents where the relevant logs live, use a central LAPI, and run a bouncer at VM1/NPM. Then the components are designed to exchange decisions instead of hoping two independent Fail2Ban installations telepathically coordinate.

    Also: do not use set_real_ip_from 0.0.0.0/0 just to make X-Forwarded-For work. That turns a client-supplied header into an IP-spoofing API.

    #SelfHosting #ReverseProxy #Fail2Ban #CrowdSec #NginxProxyManager

  11. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and compatible #Fediverse platforms. It is designed as a minimalistic, ultra-fast, privacy-conscious #social client that lets users browse, post, reply, boost, and manage Mastodon accounts ...
    Continued 👉 blog.radwebhosting.com/deploy- #npm #letsencrypt #selfhosting #firewalld #fail2ban #selfhosted

  12. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and compatible #Fediverse platforms. It is designed as a minimalistic, ultra-fast, privacy-conscious #social client that lets users browse, post, reply, boost, and manage Mastodon accounts ...
    Continued 👉 blog.radwebhosting.com/deploy- #npm #letsencrypt #selfhosting #firewalld #fail2ban #selfhosted

  13. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and compatible #Fediverse platforms. It is designed as a minimalistic, ultra-fast, privacy-conscious #social client that lets users browse, post, reply, boost, and manage Mastodon accounts ...
    Continued 👉 blog.radwebhosting.com/deploy- #npm #letsencrypt #selfhosting #firewalld #fail2ban #selfhosted

  14. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and compatible #Fediverse platforms. It is designed as a minimalistic, ultra-fast, privacy-conscious #social client that lets users browse, post, reply, boost, and manage Mastodon accounts ...
    Continued 👉 blog.radwebhosting.com/deploy- #npm #letsencrypt #selfhosting #firewalld #fail2ban #selfhosted

  15. Deploy #VoIP Call Center on #VPS

    This article provides a guide demonstrating how to deploy VoIP call center on VPS.

    This guide covers a complete #ViciBox deployment on a Rad Web Hosting VPS for #VICIdial call center operations, including VPS requirements, installation, networking, firewall configuration, SSL, and post-install verification.
    Important: ViciBox is officially supported on bare metal, KVM ...
    Continued 👉 blog.radwebhosting.com/deploy- #letsencrypt #php #telephony #fail2ban #certbot

  16. Deploy #VoIP Call Center on #VPS

    This article provides a guide demonstrating how to deploy VoIP call center on VPS.

    This guide covers a complete #ViciBox deployment on a Rad Web Hosting VPS for #VICIdial call center operations, including VPS requirements, installation, networking, firewall configuration, SSL, and post-install verification.
    Important: ViciBox is officially supported on bare metal, KVM ...
    Continued 👉 blog.radwebhosting.com/deploy- #letsencrypt #php #telephony #fail2ban #certbot

  17. Deploy #VoIP Call Center on #VPS

    This article provides a guide demonstrating how to deploy VoIP call center on VPS.

    This guide covers a complete #ViciBox deployment on a Rad Web Hosting VPS for #VICIdial call center operations, including VPS requirements, installation, networking, firewall configuration, SSL, and post-install verification.
    Important: ViciBox is officially supported on bare metal, KVM ...
    Continued 👉 blog.radwebhosting.com/deploy- #letsencrypt #php #telephony #fail2ban #certbot

  18. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and ...
    Continued 👉 #selfhosting #npm #selfhosted #letsencrypt #firewalld #fail2ban

    🚀 How to Deploy Phanpy on Alma...

  19. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and ...
    Continued 👉 #selfhosting #npm #selfhosted #letsencrypt #firewalld #fail2ban

    🚀 How to Deploy Phanpy on Alma...

  20. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and ...
    Continued 👉 #selfhosting #npm #selfhosted #letsencrypt #firewalld #fail2ban

    🚀 How to Deploy Phanpy on Alma...

  21. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and ...
    Continued 👉 #selfhosting #npm #selfhosted #letsencrypt #firewalld #fail2ban

    🚀 How to Deploy Phanpy on Alma...

  22. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and ...
    Continued 👉 #selfhosting #npm #selfhosted #letsencrypt #firewalld #fail2ban

    🚀 How to Deploy Phanpy on Alma...

  23. Deploy #VoIP Call Center on #VPS

    This article provides a guide demonstrating how to deploy VoIP call center on VPS.

    This guide covers a complete #ViciBox deployment on a Rad Web Hosting VPS for #VICIdial call center operations, including VPS requirements, installation, networking, firewall configuration, SSL, and post-install verification.
    Important: ViciBox is officially supported on bare metal, KVM ...
    Continued 👉 blog.radwebhosting.com/deploy- #telephony #letsencrypt #php #certbot #fail2ban

  24. Deploy #VoIP Call Center on #VPS

    This article provides a guide demonstrating how to deploy VoIP call center on VPS.

    This guide covers a complete #ViciBox deployment on a Rad Web Hosting VPS for #VICIdial call center operations, including VPS requirements, installation, networking, firewall configuration, SSL, and post-install verification.
    Important: ViciBox is officially supported on bare metal, KVM ...
    Continued 👉 blog.radwebhosting.com/deploy- #telephony #letsencrypt #php #certbot #fail2ban

  25. Deploy #VoIP Call Center on #VPS

    This article provides a guide demonstrating how to deploy VoIP call center on VPS.

    This guide covers a complete #ViciBox deployment on a Rad Web Hosting VPS for #VICIdial call center operations, including VPS requirements, installation, networking, firewall configuration, SSL, and post-install verification.
    Important: ViciBox is officially supported on bare metal, KVM ...
    Continued 👉 blog.radwebhosting.com/deploy- #telephony #letsencrypt #php #certbot #fail2ban

  26. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and compatible #Fediverse platforms. It is designed as a minimalistic, ultra-fast, privacy-conscious #social client that lets users browse, post, reply, boost, and manage Mastodon accounts ...
    Continued 👉 blog.radwebhosting.com/deploy- #selfhosted #selfhosting #firewalld #letsencrypt #fail2ban #npm

  27. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and compatible #Fediverse platforms. It is designed as a minimalistic, ultra-fast, privacy-conscious #social client that lets users browse, post, reply, boost, and manage Mastodon accounts ...
    Continued 👉 blog.radwebhosting.com/deploy- #selfhosted #selfhosting #firewalld #letsencrypt #fail2ban #npm

  28. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and compatible #Fediverse platforms. It is designed as a minimalistic, ultra-fast, privacy-conscious #social client that lets users browse, post, reply, boost, and manage Mastodon accounts ...
    Continued 👉 blog.radwebhosting.com/deploy- #selfhosted #selfhosting #firewalld #letsencrypt #fail2ban #npm

  29. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and compatible #Fediverse platforms. It is designed as a minimalistic, ultra-fast, privacy-conscious #social client that lets users browse, post, reply, boost, and manage Mastodon accounts ...
    Continued 👉 blog.radwebhosting.com/deploy- #selfhosted #selfhosting #firewalld #letsencrypt #fail2ban #npm

  30. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and compatible #Fediverse platforms. It is designed as a minimalistic, ultra-fast, privacy-conscious #social client that lets users browse, post, reply, boost, and manage Mastodon accounts ...
    Continued 👉 blog.radwebhosting.com/deploy- #selfhosted #selfhosting #firewalld #letsencrypt #fail2ban #npm

  31. Über 600'000 gebannte IPs auf einem Forgejo-System. Was zunächst nur als dauerhaft hohe CPU-Last in Checkmk auffiel, entpuppte sich als massiver Crawler-Traffic.

    Mit Log-Analyse und gezielten Fail2Ban-Jails konnten wir die Zugriffe automatisiert blockieren. Die CPU-Last fiel danach drastisch.

    Den technischen Ablauf habe ich im Blog festgehalten:
    onesystems.ch/blog/wie-monitor

    #Checkmk #Fail2Ban #Linux #Monitoring

  32. Über 600'000 gebannte IPs auf einem Forgejo-System. Was zunächst nur als dauerhaft hohe CPU-Last in Checkmk auffiel, entpuppte sich als massiver Crawler-Traffic.

    Mit Log-Analyse und gezielten Fail2Ban-Jails konnten wir die Zugriffe automatisiert blockieren. Die CPU-Last fiel danach drastisch.

    Den technischen Ablauf habe ich im Blog festgehalten:
    onesystems.ch/blog/wie-monitor

    #Checkmk #Fail2Ban #Linux #Monitoring

  33. Über 600'000 gebannte IPs auf einem Forgejo-System. Was zunächst nur als dauerhaft hohe CPU-Last in Checkmk auffiel, entpuppte sich als massiver Crawler-Traffic.

    Mit Log-Analyse und gezielten Fail2Ban-Jails konnten wir die Zugriffe automatisiert blockieren. Die CPU-Last fiel danach drastisch.

    Den technischen Ablauf habe ich im Blog festgehalten:
    onesystems.ch/blog/wie-monitor

    #Checkmk #Fail2Ban #Linux #Monitoring

  34. Über 600'000 gebannte IPs auf einem Forgejo-System. Was zunächst nur als dauerhaft hohe CPU-Last in Checkmk auffiel, entpuppte sich als massiver Crawler-Traffic.

    Mit Log-Analyse und gezielten Fail2Ban-Jails konnten wir die Zugriffe automatisiert blockieren. Die CPU-Last fiel danach drastisch.

    Den technischen Ablauf habe ich im Blog festgehalten:
    onesystems.ch/blog/wie-monitor

    #Checkmk #Fail2Ban #Linux #Monitoring

  35. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and compatible #Fediverse platforms. It is designed as a minimalistic, ultra-fast, privacy-conscious #social client that lets users browse, post, reply, boost, and manage Mastodon accounts ...
    Continued 👉 blog.radwebhosting.com/deploy- #selfhosted #fail2ban #firewalld #npm #selfhosting #letsencrypt

  36. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and compatible #Fediverse platforms. It is designed as a minimalistic, ultra-fast, privacy-conscious #social client that lets users browse, post, reply, boost, and manage Mastodon accounts ...
    Continued 👉 blog.radwebhosting.com/deploy- #selfhosted #fail2ban #firewalld #npm #selfhosting #letsencrypt

  37. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and compatible #Fediverse platforms. It is designed as a minimalistic, ultra-fast, privacy-conscious #social client that lets users browse, post, reply, boost, and manage Mastodon accounts ...
    Continued 👉 blog.radwebhosting.com/deploy- #selfhosted #fail2ban #firewalld #npm #selfhosting #letsencrypt

  38. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and compatible #Fediverse platforms. It is designed as a minimalistic, ultra-fast, privacy-conscious #social client that lets users browse, post, reply, boost, and manage Mastodon accounts ...
    Continued 👉 blog.radwebhosting.com/deploy- #selfhosted #fail2ban #firewalld #npm #selfhosting #letsencrypt

  39. Deploy #VoIP Call Center on #VPS

    This article provides a guide demonstrating how to deploy VoIP call center on VPS.

    This guide covers a complete #ViciBox deployment on a Rad Web Hosting VPS for #VICIdial call center operations, ...
    Continued 👉 #letsencrypt #php #fail2ban #telephony #certbot

    Deploy VoIP Call Center on VPS

  40. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and ...
    Continued 👉 #fail2ban #letsencrypt #firewalld #selfhosted #selfhosting #npm

    🚀 How to Deploy Phanpy on Alma...

  41. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and ...
    Continued 👉 #fail2ban #letsencrypt #firewalld #selfhosted #selfhosting #npm

    🚀 How to Deploy Phanpy on Alma...

  42. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and ...
    Continued 👉 #fail2ban #letsencrypt #firewalld #selfhosted #selfhosting #npm

    🚀 How to Deploy Phanpy on Alma...

  43. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and ...
    Continued 👉 #fail2ban #letsencrypt #firewalld #selfhosted #selfhosting #npm

    🚀 How to Deploy Phanpy on Alma...

  44. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and ...
    Continued 👉 #fail2ban #letsencrypt #firewalld #selfhosted #selfhosting #npm

    🚀 How to Deploy Phanpy on Alma...

  45. Das #internet macht auch keinen Spaß mehr.
    Das sind die Top-Sperren mit fail2ban bei 2 Domains, die nicht einmal aktiv irgendwo sind. Nur der Webserver steht da rum und langweilt sich. Alles mit #fail2ban geloggt.
    Hauptursache: Globale #BruteForce auf #ssh. Also sichert eure Webserver von Anfang an ab.

    📊 Länder-Statistik:
🇻🇳 Vietnam: 6 (54,5%)
🇷🇺 Russland: 1 (9,1%)
🇨🇴 Kolumbien: 1 (9,1%)
🇺🇿 Usbekistan: 1 (9,1%)
🇭🇰 Hongkong: 1 (9,1%)
🇩🇪 Deutschland: 1 (9,1%)

  46. Das macht auch keinen Spaß mehr.
    Das sind die Top-Sperren mit fail2ban bei 2 Domains, die nicht einmal aktiv irgendwo sind. Nur der Webserver steht da rum und langweilt sich. Alles mit geloggt.
    Hauptursache: Globale auf . Also sichert eure Webserver von Anfang an ab.

    📊 Länder-Statistik:
🇻🇳 Vietnam: 6 (54,5%)
🇷🇺 Russland: 1 (9,1%)
🇨🇴 Kolumbien: 1 (9,1%)
🇺🇿 Usbekistan: 1 (9,1%)
🇭🇰 Hongkong: 1 (9,1%)
🇩🇪 Deutschland: 1 (9,1%)

  47. Deploy #VoIP Call Center on #VPS

    This article provides a guide demonstrating how to deploy VoIP call center on VPS.

    This guide covers a complete #ViciBox deployment on a Rad Web Hosting VPS for #VICIdial call center operations, including VPS requirements, installation, networking, firewall configuration, SSL, and post-install verification.
    Important: ViciBox is officially supported on bare metal, KVM ...
    Continued 👉 blog.radwebhosting.com/deploy- #fail2ban #php #telephony #certbot #letsencrypt

  48. Deploy #VoIP Call Center on #VPS

    This article provides a guide demonstrating how to deploy VoIP call center on VPS.

    This guide covers a complete #ViciBox deployment on a Rad Web Hosting VPS for #VICIdial call center operations, including VPS requirements, installation, networking, firewall configuration, SSL, and post-install verification.
    Important: ViciBox is officially supported on bare metal, KVM ...
    Continued 👉 blog.radwebhosting.com/deploy- #fail2ban #php #telephony #certbot #letsencrypt

  49. Deploy #VoIP Call Center on #VPS

    This article provides a guide demonstrating how to deploy VoIP call center on VPS.

    This guide covers a complete #ViciBox deployment on a Rad Web Hosting VPS for #VICIdial call center operations, including VPS requirements, installation, networking, firewall configuration, SSL, and post-install verification.
    Important: ViciBox is officially supported on bare metal, KVM ...
    Continued 👉 blog.radwebhosting.com/deploy- #fail2ban #php #telephony #certbot #letsencrypt

  50. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and compatible #Fediverse platforms. It is designed as a minimalistic, ultra-fast, privacy-conscious #social client that lets users browse, post, reply, boost, and manage Mastodon accounts ...
    Continued 👉 blog.radwebhosting.com/deploy- #firewalld #selfhosted #npm #selfhosting #fail2ban #letsencrypt

  51. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and compatible #Fediverse platforms. It is designed as a minimalistic, ultra-fast, privacy-conscious #social client that lets users browse, post, reply, boost, and manage Mastodon accounts ...
    Continued 👉 blog.radwebhosting.com/deploy- #firewalld #selfhosted #npm #selfhosting #fail2ban #letsencrypt

  52. 🚀 How to Deploy #Phanpy on #AlmaLinux #VPS

    This article provides a guide demonstrating how to deploy Phanpy on AlmaLinux VPS.
    What is Phanpy?
    Phanpy is a modern alternative web frontend for #Mastodon and compatible #Fediverse platforms. It is designed as a minimalistic, ultra-fast, privacy-conscious #social client that lets users browse, post, reply, boost, and manage Mastodon accounts ...
    Continued 👉 blog.radwebhosting.com/deploy- #firewalld #selfhosted #npm #selfhosting #fail2ban #letsencrypt