Answer the question
In order to leave comments, you need to log in
How to properly configure NGINX so as not to block search robots?
Hello!
I'm setting up Nginx to avoid primitive DDoS attacks, but I don't want to accidentally block crawlers. Now it's set up like this:
http {
limit_req_zone $binary_remote_addr zone=one:10m rate=10r/s;
# ...
server {
location / {
limit_req zone=one burst=20 nodelay;
# ...
}
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question