bloquear acesso ao .env no webservice

This commit is contained in:
Renan Bernordi 2024-12-04 10:04:07 -03:00
parent 580a7f8c4e
commit 7a49945e1c

View file

@ -33,5 +33,10 @@ server {
deny all;
}
location = /.env {
deny all;
return 404;
}
access_log /dev/null;
}