summaryrefslogtreecommitdiffstats
path: root/adei/configs/apache.conf
diff options
context:
space:
mode:
Diffstat (limited to 'adei/configs/apache.conf')
-rw-r--r--adei/configs/apache.conf25
1 files changed, 25 insertions, 0 deletions
diff --git a/adei/configs/apache.conf b/adei/configs/apache.conf
new file mode 100644
index 0000000..5ea312d
--- /dev/null
+++ b/adei/configs/apache.conf
@@ -0,0 +1,25 @@
+<Location /adei/admin/>
+ AuthType Basic
+ AuthName "ADEI/Admin Authentication"
+ AuthBasicProvider file
+ AuthUserFile /adei/cfg/apache.passwd
+ Require valid-user
+ Order deny,allow
+ Deny from all
+ Allow from 127.0.0.1
+ Allow from ::1
+ Satisfy Any
+</Location>
+
+<Location /adei/services/control.php>
+ AuthType Basic
+ AuthName "ADEI/Control Authentication"
+ AuthBasicProvider file
+ AuthUserFile /adei/cfg/apache.passwd
+ Require valid-user
+ Order deny,allow
+ Deny from all
+ Allow from 127.0.0.1
+ Allow from ::1
+ Satisfy Any
+</Location>