search
HomeOperation and MaintenanceNginxHow to configure Nginx server to prevent Flood attacks

Test

I will briefly tell you how to configure nginx's restricted request module and how it protects your website from being attacked by DDoS or other http-based Denial of service attack.

In this test, I saved the sample page in blitz.io (now a free service) and named it about.html to test the limit_req directive.

First, I saved it on blitz Use the following command to initiate 1075 concurrent requests and last for one minute. The response timeout is set to 2 minutes, the region is California, and all other states except status 200 are set to abnormal status. Even 503 is considered It was unsuccessful.

-p 1-1075:60 --status 200 -t 2000 -r california http://kbeezie.com/about.html

How to configure Nginx server to prevent Flood attacks

## Not bad, right? But if this is a php document. It is very likely that some users will cause the 502/504 status of the php process, making the server crash or become unresponsive. Especially if you use Any protected vps or other cheap server will have a higher failure rate. (Original advertisement, blocked here)

Of course you can use caching or other tools to improve server performance and responsiveness. For example, if you use wordpress, you must use the wordpress caching plugin. da for those type of people we can use the limit request module.

In nginx we create a region http { }, I call it blitz to set 5 requests per second, and the maximum amount of data can be accommodated is 10mb. I use $binary_remote_addr as the session variable Allow yourself to access more than 10mb of space than normal visitors to $remote_addr.

Copy the code The code is as follows:

limit_req_zone $binary_remote_addr zone=blitz:10m rate=5r/s;

Ran Zhou defines these rules in the server:

Copy the code The code is as follows:

location = /about.html {

limit_req zone=blitz nodelay;
}

Then reload the nginx configuration and see the effect:

How to configure Nginx server to prevent Flood attacks

You will find that only 285 people can access the server now , the number of requests per second is 4.75, which does not exceed the 5 times per second we set. Check the log and you will find that the requests that are not accessed are http 503, and the requests that are accessed are all http 200.

Use like this The setting is helpful if you want to restrict access to a region, it can also be applied to all php requests.

php Apply Request Limits

If you want to restrict all For PHP application limits, you can do this:

Copy code The code is as follows:

location ~ \.php {

limit_req zone=flood;
include php_params.conf;
fastcgi_pass unix:/tmp/php5-fpm.sock;
}

It can help you play with settings such as acceleration or deceleration to cope with sudden or no-delay requirements. Configuration item details , click here: httplimitreqmodule.

Note:

You may notice that the above chart tested 1075 user requests, which is misleading because all access requests come from the same server located in California. ip(50.18.0.223).

It is difficult for me to implement a real high-traffic network or ddos ​​(distributed denial of service attack). This is why the number of users we successfully access is not the same as ip Very large. Server load will also affect the number of visits or regions of test users. With the free version, the maximum number of concurrent users you can access is 50. Of course, you can spend $49 per day to allow 1,000 users to visit your website.

If you have enough memory and bandwidth, it is very easy to test with a single IP address. With this tool, you can achieve: high concurrency, ab, openload, etc. It is just in the terminal interface, without UI That’s it.

Of course you have to test it yourself, remember to use the status flag, because blitz will respond to the access request after about 5 seconds.

Better alternative

Without going into more details here, if you are serious about preventing DDoS or multi-service attacks from attacking your server, there are other great software tools like iptables (linux), pf (packet filter for bsd), or if your server provides hardware, you can use your hardware firewall. The above restriction module will only prevent flood attacks through http requests. It will not prevent ping packet flood attacks or other vulnerabilities. For these In this case, you can close unnecessary services and unnecessary ports to prevent others from breaking through.

For example, the only ports my server exposes to the external network are http/https and ssh. Among services such as mysql Bind local connections. You can also set some common services to ports that are not commonly used so that they will not be sniffed (iptables/pf will help in this situation).

The above is the detailed content of How to configure Nginx server to prevent Flood attacks. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
NGINX Unit: Key Features and CapabilitiesNGINX Unit: Key Features and CapabilitiesApr 25, 2025 am 12:17 AM

NGINXUnit is an open source application server that supports multiple programming languages ​​and provides functions such as dynamic configuration, zero downtime updates and built-in load balancing. 1. Dynamic configuration: You can modify the configuration without restarting. 2. Multilingual support: compatible with Python, Go, Java, PHP, etc. 3. Zero downtime update: Supports application updates that do not interrupt services. 4. Built-in load balancing: Requests can be distributed to multiple application instances.

NGINX Unit vs. Other Application ServersNGINX Unit vs. Other Application ServersApr 24, 2025 am 12:14 AM

NGINXUnit is better than ApacheTomcat, Gunicorn and Node.js built-in HTTP servers, suitable for multilingual projects and dynamic configuration requirements. 1) Supports multiple programming languages, 2) Provides dynamic configuration reloading, 3) Built-in load balancing function, suitable for projects that require high scalability and reliability.

NGINX Unit: The Architecture and How It WorksNGINX Unit: The Architecture and How It WorksApr 23, 2025 am 12:18 AM

NGINXUnit improves application performance and manageability with its modular architecture and dynamic reconfiguration capabilities. 1) Modular design includes master processes, routers and application processes, supporting efficient management and expansion. 2) Dynamic reconfiguration allows seamless update of configuration at runtime, suitable for CI/CD environments. 3) Multilingual support is implemented through dynamic loading of language runtime, improving development flexibility. 4) High performance is achieved through event-driven models and asynchronous I/O, and remains efficient even under high concurrency. 5) Security is improved by isolating application processes and reducing the mutual influence between applications.

Using NGINX Unit: Deploying and Managing ApplicationsUsing NGINX Unit: Deploying and Managing ApplicationsApr 22, 2025 am 12:06 AM

NGINXUnit can be used to deploy and manage applications in multiple languages. 1) Install NGINXUnit. 2) Configure it to run different types of applications such as Python and PHP. 3) Use its dynamic configuration function for application management. Through these steps, you can efficiently deploy and manage applications and improve project efficiency.

NGINX vs. Apache: A Comparative Analysis of Web ServersNGINX vs. Apache: A Comparative Analysis of Web ServersApr 21, 2025 am 12:08 AM

NGINX is more suitable for handling high concurrent connections, while Apache is more suitable for scenarios where complex configurations and module extensions are required. 1.NGINX is known for its high performance and low resource consumption, and is suitable for high concurrency. 2.Apache is known for its stability and rich module extensions, which are suitable for complex configuration needs.

NGINX Unit's Advantages: Flexibility and PerformanceNGINX Unit's Advantages: Flexibility and PerformanceApr 20, 2025 am 12:07 AM

NGINXUnit improves application flexibility and performance with its dynamic configuration and high-performance architecture. 1. Dynamic configuration allows the application configuration to be adjusted without restarting the server. 2. High performance is reflected in event-driven and non-blocking architectures and multi-process models, and can efficiently handle concurrent connections and utilize multi-core CPUs.

NGINX vs. Apache: Performance, Scalability, and EfficiencyNGINX vs. Apache: Performance, Scalability, and EfficiencyApr 19, 2025 am 12:05 AM

NGINX and Apache are both powerful web servers, each with unique advantages and disadvantages in terms of performance, scalability and efficiency. 1) NGINX performs well when handling static content and reverse proxying, suitable for high concurrency scenarios. 2) Apache performs better when processing dynamic content and is suitable for projects that require rich module support. The selection of a server should be decided based on project requirements and scenarios.

The Ultimate Showdown: NGINX vs. ApacheThe Ultimate Showdown: NGINX vs. ApacheApr 18, 2025 am 12:02 AM

NGINX is suitable for handling high concurrent requests, while Apache is suitable for scenarios where complex configurations and functional extensions are required. 1.NGINX adopts an event-driven, non-blocking architecture, and is suitable for high concurrency environments. 2. Apache adopts process or thread model to provide a rich module ecosystem that is suitable for complex configuration needs.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor