blob: 5ea312dae04a302acec21b2caa34cbe9374161c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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>
|