-
Notifications
You must be signed in to change notification settings - Fork 2
/
new.conf
executable file
·49 lines (37 loc) · 1.11 KB
/
new.conf
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
[DEFAULT]
## this section is just used as default for all the "s3 *"
## sections, you can place these variables also directly there
## replace with e.g. "localhost" to run against local software
host = 127.0.0.1
# skinny
## uncomment the port to use something other than 80
port = 8000
## say "no" to disable TLS
is_secure = no
[fixtures]
## all the buckets created will start with this prefix;
## {random} will be filled with random characters to pad
## the prefix to 30 characters long, and avoid collisions
bucket prefix = o-{random}-
default_region = one
[region one]
api_name = slim
sync_agent_addr = 127.0.0.1
sync_agent_port = 3000
[region two]
port = 8002
is_master = true
[s3 main]
## the tests assume two accounts are defined, "main" and "alt".
## user_id is a 64-character hexstring
user_id = <uid>
## display name typically looks more like a unix login, "jdoe" etc
display_name = <name>
## replace these with your access keys
access_key = <key>
secret_key = <secret>
[s3 alt]
## another user account, used for ACL-related tests
user_id = testid
display_name = testid
## the "alt" user needs to have email set, too