Devo limitare l'accesso a qualsiasi file o sottodiretto in "testdir" diretto. La mia conf:
...
location ~* ^.+\.(jpg|txt)$ {
root /var/www/site;
}
location /testdir {
deny all;
return 404;
}
...
Nella mia configurazione non ho restrizioni su / testdir / jpg_or_txt-files. Come farlo?