-
Notifications
You must be signed in to change notification settings - Fork 10
/
config-sample.inc.php
60 lines (52 loc) · 1.88 KB
/
config-sample.inc.php
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
/**
* File: Configuration
* Stores your AWS account information. Add your account information, then rename this file to 'config.inc.php'.
*
* Version:
* 2009.08.20
*
* Copyright:
* 2006-2009 Foleeo, Inc., and contributors.
*
* License:
* Simplified BSD License - http://opensource.org/licenses/bsd-license.php
*
* See Also:
* CloudFusion - http://getcloudfusion.com
*/
/**
* Constant: AWS_KEY
* Amazon Web Services Key. <http://aws-portal.amazon.com/gp/aws/developer/account/index.html?ie=UTF8&action=access-key>
*/
define('AWS_KEY', '');
/**
* Constant: AWS_SECRET_KEY
* Amazon Web Services Secret Key. <http://aws-portal.amazon.com/gp/aws/developer/account/index.html?ie=UTF8&action=access-key>
*/
define('AWS_SECRET_KEY', '');
/**
* Constant: AWS_ACCOUNT_ID
* Amazon Account ID without dashes. Used for identification with Amazon EC2. <http://aws-portal.amazon.com/gp/aws/developer/account/index.html?ie=UTF8&action=access-key>
*/
define('AWS_ACCOUNT_ID', '');
/**
* Constant: AWS_ASSOC_ID
* Amazon Associates ID. Used for crediting referrals via Amazon AAWS. <http://affiliate-program.amazon.com/gp/associates/join/>
*/
define('AWS_ASSOC_ID', '');
/**
* Constant: AWS_DEFAULT_LOCALE
* Locale that all PAS methods should default to. Can be overridden per-instance. Valid values are 'us', 'uk', 'ca', 'fr', 'de', or 'jp'.
*/
define('AWS_DEFAULT_LOCALE', '');
/**
* Constant: AWS_CANONICAL_ID
* Your CanonicalUser ID. Used for setting access control settings in AmazonS3. Must be fetched from the server. Call <?php print_r($s3->get_canonical_user_id()); ?> to view.
*/
define('AWS_CANONICAL_ID', '');
/**
* Constant: AWS_CANONICAL_NAME
* Your CanonicalUser DisplayName. Used for setting access control settings in AmazonS3. Must be fetched from the server. Call <?php print_r($s3->get_canonical_user_id()); ?> to view.
*/
define('AWS_CANONICAL_NAME', '');