Skip to content

Commit

Permalink
Add ENABLE_S3_MOVER configuration variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
dse committed Jul 15, 2011
1 parent db17ee1 commit 0865248
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
12 changes: 7 additions & 5 deletions conf/bricolage.conf
Original file line number Diff line number Diff line change
Expand Up @@ -175,11 +175,12 @@ PASSWD_LENGTH = 5
# Bricolage cannot ascertain the media type. Defaults to "text/html" if not
# specified.
#
# Set ENABLE_SFTP_MOVER or ENABLE_WEBDAV_MOVER to 'yes' or 'on' or 1, to tell
# the API that the distribution engine can distribute resources by SFTP or by
# the WebDAV protocol. Both are disabled by default. Using either the SFTP or
# the WebDAV mover requires some manual installation; perldoc Bric::Admin for
# details.
# Set ENABLE_SFTP_MOVER, ENABLE_S3_MOVER, or ENABLE_WEBDAV_MOVER to
# 'yes' or 'on' or 1, to tell the API that the distribution engine can
# distribute resources by SFTP, by Amazon S3, or by the WebDAV
# protocol. All of those are disabled by default. Using either the SFTP,
# the Amazon S3, or the WebDAV mover requires some manual installation;
# perldoc Bric::Admin for details.
#
# Setting SFTP_MOVER_CIPHER will force the SFTP mover to use that cipher when
# distributing resources via SFTP. Consult the Net::SSH2 documentation
Expand Down Expand Up @@ -214,6 +215,7 @@ SFTP_MOVER_CIPHER = 0
SFTP_KEY_TYPE = 0
SFTP_PRIVATE_KEY_FILE = 0
SFTP_PUBLIC_KEY_FILE = 0
ENABLE_S3_MOVER = No
ENABLE_WEBDAV_MOVER = No
QUEUE_PUBLISH_JOBS = No
FTP_UNLINK_BEFORE_MOVE = No
Expand Down
8 changes: 8 additions & 0 deletions lib/Bric/Admin.pod
Original file line number Diff line number Diff line change
Expand Up @@ -2102,6 +2102,14 @@ entered in the Bricolage interface when setting up the destination.

=item *

B<ENABLE_S3_MOVER:> This directive indicates whether the Bricolage
server may distribute resources using the Amazon S3 mover. Setting
this to "On" or "Yes" or "1" will enable the Amazon S3 mover. In order
to use the Amazon S3 mover, you must install the Net::Amazon::S3
module from the CPAN (and its prerequisites).

=item *

B<ENABLE_WEBDAV_MOVER:> Bricolage also supports resource distribution through
the WebDAV protocol. Set this directive to "On" or "Yes" or "1" to enable it.
You need to have installed HTTP::DAV from the CPAN, in order to use WebDAV
Expand Down

0 comments on commit 0865248

Please sign in to comment.