NgixProxy_Pathfinder/nginx/snippets/robots_allow.conf

9 lines
231 B
Plaintext

# robots_allow.conf - Permitir Tudo
# Função: Indica que todos os robôs podem indexar todo o site.
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
return 200 "User-agent: *\nAllow: /\n";
}