nginx-ultimate-bad-bot-blocker/.dev-tools/beta_conf_files/default.vhost
2019-07-02 15:16:49 +02:00

21 lines
380 B
Nginx Configuration File

server {
listen *:9000;
root /var/www/html;
server_name localhost;
charset UTF-8;
##
# Nginx Bad Bot Blocker Includes
# REPO: https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker
##
include /etc/nginx/bots.d/ddos.conf;
include /etc/nginx/bots.d/blockbots.conf;
index index.html;
location / {
root /var/www/html/;
}
}