/admin/docker

To get this branch, use:
bzr branch http://suren.me/webbzr/admin/docker

« back to all changes in this revision

Viewing changes to adei/adei/configs/apache.conf

  • Committer: Suren A. Chilingaryan
  • Date: 2016-12-23 19:40:10 UTC
  • Revision ID: csa@suren.me-20161223194010-1013mnipk5revl6m
Initial release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<Location /adei/admin/>
 
2
    AuthType            Basic
 
3
    AuthName            "ADEI/Admin Authentication"
 
4
    AuthBasicProvider   file
 
5
    AuthUserFile        /adei/cfg/apache.passwd
 
6
    Require             valid-user
 
7
    Order               deny,allow
 
8
    Deny                from all
 
9
    Allow               from 127.0.0.1
 
10
    Allow               from ::1
 
11
    Satisfy             Any
 
12
</Location>
 
13
 
 
14
<Location /adei/services/control.php>
 
15
    AuthType            Basic
 
16
    AuthName            "ADEI/Control Authentication"
 
17
    AuthBasicProvider   file
 
18
    AuthUserFile        /adei/cfg/apache.passwd
 
19
    Require             valid-user
 
20
    Order               deny,allow
 
21
    Deny                from all
 
22
    Allow               from 127.0.0.1
 
23
    Allow               from ::1
 
24
    Satisfy             Any
 
25
</Location>