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

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'ui/conf/.htaccess')
-rw-r--r--ui/conf/.htaccess10
1 files changed, 10 insertions, 0 deletions
diff --git a/ui/conf/.htaccess b/ui/conf/.htaccess
new file mode 100644
index 00000000000..2509de4fcf4
--- /dev/null
+++ b/ui/conf/.htaccess
@@ -0,0 +1,10 @@
+<IfModule mod_authz_core.c>
+ # Apache 2.4
+ Require all denied
+</IfModule>
+
+<IfModule !mod_authz_core.c>
+ # Apache 2.2
+ Order deny,allow
+ Deny from all
+</IfModule>