Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'conf/nginx.conf')
-rw-r--r--conf/nginx.conf6
1 files changed, 5 insertions, 1 deletions
diff --git a/conf/nginx.conf b/conf/nginx.conf
index b4248b8d2..d48255033 100644
--- a/conf/nginx.conf
+++ b/conf/nginx.conf
@@ -32,6 +32,10 @@ http {
index index.html index.htm;
}
+ # deny access to .htaccess files
+ #
+ #location ~ \.ht {
+ # deny all;
+ #}
}
-
}