nginx-install/nginxsnippets/block-htaccess.conf

5 lines
43 B
Plaintext
Raw Permalink Normal View History

2024-10-13 00:56:32 +02:00
location ~ /\.ht {
deny all;
return 404;
}