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