nginx: block additionally *.sql

This commit is contained in:
slawkens 2025-04-24 13:44:38 +02:00
parent 1e45d5c393
commit 0fbd4bf1be

View File

@ -14,7 +14,7 @@ server {
# block .htaccess, CHANGELOG.md, composer.json etc.
# this is to prevent finding software versions
location ~\.(ht|md|json|dist)$ {
location ~\.(ht|md|json|dist|sql)$ {
deny all;
}