* Added BackupPC::Xfer::Protocol as a common class for each Xfer
[BackupPC.git] / httpd / src / BackupPC.conf
diff --git a/httpd/src/BackupPC.conf b/httpd/src/BackupPC.conf
new file mode 100644 (file)
index 0000000..163bff9
--- /dev/null
@@ -0,0 +1,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      __CGIDIR__ >
+
+#
+# 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 __CONFDIR__/BackupPC.users
+AuthName "BackupPC Community Edition Administrative Interface"
+require valid-user
+
+</Directory>
+
+Alias           __IMAGEDIRURL__         __IMAGEDIR__
+ScriptAlias     /BackupPC_Admin         __CGIDIR__/BackupPC_Admin