Skip to main content

7 posts tagged with "Nginx"

View All Tags

Backup Recovery Case Study: 6 Hours Back

· 5 min read
Customer Care Engineer

Published on July 10, 2026

Backup Recovery Case Study: 6 Hours Back

At 02:14 UTC, the storefront stopped writing orders to the database. By 02:19, the site was still serving cached pages, but checkout had already become fiction. This backup recovery case study follows what happened next on a production VPS for a small e-commerce business, what we restored, what we did not restore blindly, and why the service was stable again before sunrise.

The customer ran a fairly standard stack for a growing online store - Nginx, PHP-FPM, MariaDB, Redis, and a control panel used by two non-sysadmin staff members. Traffic was not huge, but the timing was painful. A sale campaign had pushed order volume up, database writes were peaking, and a storage issue at the filesystem layer started corrupting active database tables. Not dramatic in Hollywood style, but serious enough that every minute mattered.

The first job was not restoration. The first job was to stop damage from spreading. We placed the application in maintenance mode, preserved current disk state for review, and checked whether replication, snapshots, or logical dumps gave us the cleanest recovery point. This matters more than people like to admit. Fast recovery is good. Fast recovery to damaged data is only fast disappointment.

How to Set Up SSL Certificates Right

· 5 min read
Customer Care Engineer

Published on June 3, 2026

How to Set Up SSL Certificates Right

A working SSL setup is not just “install certificate and done.” The certificate must match the domain, the private key must stay on the correct server, DNS must point where you think it points, and your web server must present the right cert for the right hostname. If you are looking for how to set up SSL certificates without surprises at 2 a.m., this is the practical path.

K000161019: NGINX CVE-2026-42945

· 5 min read
Customer Care Engineer

Published on May 14, 2026

K000161019: NGINX CVE-2026-42945

K000161019: NGINX ngx_http_rewrite_module vulnerability CVE-2026-42945 needs immediate review anywhere rewrite rules are doing request handling in front of applications, APIs, or login flows. If your stack depends on complex `rewrite`, `if`, `return`, or URI normalization behavior, this is the place to check first. The good news is that the issue is usually manageable with a clear audit, a temporary ruleset cleanup, and a controlled NGINX update.

For most operators, the practical question is not whether NGINX is present. It is whether `ngx_http_rewrite_module` is used in a way that lets crafted requests bypass intended routing or security logic. That distinction matters. A plain static site with minimal config is a very different risk profile from a multi-tenant app gateway with legacy rewrite chains and a few heroic regexes written at 2 a.m.

The official link: https://my.f5.com/manage/s/article/K000161019

HTTP/2 and HTTP/3: Faster, but Is It worth enabling them? Pros, cons, and configuration

· 4 min read
Customer Care Engineer

http2-vs-http3-speed-pros-cons-configuration

Modern HTTP/2 and HTTP/3 protocols can significantly speed up site loading, improve user experience and increase search engine rankings. But not everything is so simple: they have both advantages and disadvantages. Let's understand what these protocols are, their pros and cons, and how to enable them on your server.

Don’t waste your server resources: block unwanted bots using Nginx

· 4 min read
Customer Care Engineer

block-unwanted-bots-using-nginx

Search engine bots (crawlers) are special programs that scan websites on the Internet. Search engines need them to find, index and display pages in search results. But not all bots are useful!

Sometimes your site may be visited by unwanted bots that:

  • Collect data without your permission.
  • Consume server resources, slowing it down.
  • Are used to look for vulnerabilities.

If you want to protect your site from such bots, it’s time to configure Nginx! In this article, we’ll show you how to easily and quickly block them using a special configuration file.