-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathskinny.conf
executable file
·44 lines (34 loc) · 1.07 KB
/
skinny.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
[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
api_name = slim
[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}-
# slow backend = false
[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
email = [email protected]
access_key = <key>
secret_key = <secret>