* Added BackupPC::Xfer::Protocol as a common class for each Xfer
[BackupPC.git] / httpd / src / BackupPC.conf
1 #
2 # DESCRIPTION
3 #
4 #   This file controls access and configuration for the BackupPC CGI
5 #   interface.
6 #
7 # Distributed with BackupPC version 3.1.1, released 22 Dec 2008.
8
9 <Directory      __CGIDIR__ >
10
11 #
12 # This section tells apache which machines can access the interface.
13 # You can change the allow line to allow access from your local
14 # network, or comment out this region to allow access from all
15 # machines.
16 #
17 order deny,allow
18 deny from all
19 allow from 127.0.0.1
20
21 #
22 # You can change the authorization method to LDAP or another method
23 # besides htaccess here if you are so inclined.
24 #
25 AuthType Basic
26 AuthUserFile __CONFDIR__/BackupPC.users
27 AuthName "BackupPC Community Edition Administrative Interface"
28 require valid-user
29
30 </Directory>
31
32 Alias           __IMAGEDIRURL__         __IMAGEDIR__
33 ScriptAlias     /BackupPC_Admin         __CGIDIR__/BackupPC_Admin