mirror of
https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker.git
synced 2025-09-02 10:40:36 +00:00
13 lines
215 B
Nginx Configuration File
13 lines
215 B
Nginx Configuration File
server {
|
|
listen *:9000;
|
|
|
|
root /var/www/html;
|
|
server_name localhost;
|
|
charset UTF-8;
|
|
index index.html;
|
|
|
|
# Bad Bot Blocker
|
|
include /etc/nginx/bots.d/ddos.conf;
|
|
include /etc/nginx/bots.d/blockbots.conf;
|
|
|
|
}
|