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 26 27 28 29 30 31 32 33
|
#
# DESCRIPTION
#
# This file controls access and configuration for the BackupPC CGI
# interface.
#
# Distributed with BackupPC version 3.1.1, released 22 Dec 2008.
<Directory /usr/share/backuppc/cgi-bin >
#
# This section tells apache which machines can access the interface.
# You can change the allow line to allow access from your local
# network, or comment out this region to allow access from all
# machines.
#
order deny,allow
deny from all
allow from 127.0.0.1
#
# You can change the authorization method to LDAP or another method
# besides htaccess here if you are so inclined.
#
AuthType Basic
AuthUserFile /etc/backuppc/BackupPC.users
AuthName "BackupPC Community Edition Administrative Interface"
require valid-user
</Directory>
Alias /backuppc/image /usr/share/backuppc/image
ScriptAlias /BackupPC_Admin /usr/share/backuppc/cgi-bin/BackupPC_Admin
|