Initiate packetization of Testing reporting
[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 [swagger]
22 base_url = http://localhost:8000
23
24 [ui]
25 url = http://localhost:8000
26
27 [osid]
28
29 # OpenStackID Auth Server URI. (string value)
30 openstack_openid_endpoint = https://openstackid.org/accounts/openid2
31
32 # OpenStackID logout URI. (string value)
33 openid_logout_endpoint = https://openstackid.org/accounts/user/logout
34
35 # Interaction mode. Specifies whether Openstack Id IdP may interact
36 # with the user to determine the outcome of the request. (string
37 # value)
38 openid_mode = checkid_setup
39
40 # Protocol version. Value identifying the OpenID protocol version
41 # being used. This value should be "http://specs.openid.net/auth/2.0".
42 # (string value)
43 openid_ns = http://specs.openid.net/auth/2.0
44
45 # Return endpoint in Refstack's API. Value indicating the endpoint
46 # where the user should be returned to after signing in. Openstack Id
47 # Idp only supports HTTPS address types. (string value)
48 openid_return_to = v1/auth/signin_return
49
50 # Claimed identifier. This value must be set to
51 # "http://specs.openid.net/auth/2.0/identifier_select". or to user
52 # claimed identity (user local identifier or user owned identity [ex:
53 # custom html hosted on a owned domain set to html discover]). (string
54 # value)
55 openid_claimed_id = http://specs.openid.net/auth/2.0/identifier_select
56
57 # Alternate identifier. This value must be set to
58 # http://specs.openid.net/auth/2.0/identifier_select. (string value)
59 openid_identity = http://specs.openid.net/auth/2.0/identifier_select
60
61 # Indicates request for user attribute information. This value must be
62 # set to "http://openid.net/extensions/sreg/1.1". (string value)
63 openid_ns_sreg = http://openid.net/extensions/sreg/1.1
64
65 # Comma-separated list of field names which, if absent from the
66 # response, will prevent the Consumer from completing the registration
67 # without End User interation. The field names are those that are
68 # specified in the Response Format, with the "openid.sreg." prefix
69 # removed. Valid values include: "country", "email", "firstname",
70 # "language", "lastname" (string value)
71 openid_sreg_required = email,fullname