run Functest daily in xci
[releng.git] / utils / test / testapi / etc / config.ini
1 # to add a new parameter in the config file,
2 # the CONF object in config.ini must be updated
3 [mongo]
4 # URL of the mongo DB
5 # Mongo auth url => mongodb://user1:pwd1@host1/?authSource=db1
6 url = mongodb://127.0.0.1:27017/
7 dbname = test_results_collection
8
9 [api]
10 # Listening port
11 url = http://localhost:8000/api/v1
12 port = 8000
13
14 # Number of results for one page (integer value)
15 results_per_page = 20
16
17 # With debug_on set to true, error traces will be shown in HTTP responses
18 debug = True
19 authenticate = False
20
21 [ui]
22 url = http://localhost:8000
23
24 [osid]
25
26 # OpenStackID Auth Server URI. (string value)
27 openstack_openid_endpoint = https://openstackid.org/accounts/openid2
28
29 # OpenStackID logout URI. (string value)
30 openid_logout_endpoint = https://openstackid.org/accounts/user/logout
31
32 # Interaction mode. Specifies whether Openstack Id IdP may interact
33 # with the user to determine the outcome of the request. (string
34 # value)
35 openid_mode = checkid_setup
36
37 # Protocol version. Value identifying the OpenID protocol version
38 # being used. This value should be "http://specs.openid.net/auth/2.0".
39 # (string value)
40 openid_ns = http://specs.openid.net/auth/2.0
41
42 # Return endpoint in Refstack's API. Value indicating the endpoint
43 # where the user should be returned to after signing in. Openstack Id
44 # Idp only supports HTTPS address types. (string value)
45 openid_return_to = v1/auth/signin_return
46
47 # Claimed identifier. This value must be set to
48 # "http://specs.openid.net/auth/2.0/identifier_select". or to user
49 # claimed identity (user local identifier or user owned identity [ex:
50 # custom html hosted on a owned domain set to html discover]). (string
51 # value)
52 openid_claimed_id = http://specs.openid.net/auth/2.0/identifier_select
53
54 # Alternate identifier. This value must be set to
55 # http://specs.openid.net/auth/2.0/identifier_select. (string value)
56 openid_identity = http://specs.openid.net/auth/2.0/identifier_select
57
58 # Indicates request for user attribute information. This value must be
59 # set to "http://openid.net/extensions/sreg/1.1". (string value)
60 openid_ns_sreg = http://openid.net/extensions/sreg/1.1
61
62 # Comma-separated list of field names which, if absent from the
63 # response, will prevent the Consumer from completing the registration
64 # without End User interation. The field names are those that are
65 # specified in the Response Format, with the "openid.sreg." prefix
66 # removed. Valid values include: "country", "email", "firstname",
67 # "language", "lastname" (string value)
68 openid_sreg_required = email,fullname