-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbillingstack.conf.sample
More file actions
59 lines (50 loc) · 1.54 KB
/
billingstack.conf.sample
File metadata and controls
59 lines (50 loc) · 1.54 KB
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
[DEFAULT]
########################
## General Configuration
########################
# Show more verbose log output (sets INFO log level output)
verbose = True
# Show debugging output in logs (sets DEBUG log level output)
debug = True
# Top-level directory for maintaining billingstack's state
#state_path = /var/lib/billingstack
# Log directory
#logdir = /var/log/billingstack
identity_driver = internal
[service:api]
# Address to bind the API server
# api_host = 0.0.0.0
# Port the bind the API server to
#api_port = 9001
#######################
## Storage Configuration
########################
#-----------------------
# SQLAlchemy Storage
#-----------------------
[storage:sqlalchemy]
# Database connection string - to configure options for a given implementation
# like sqlalchemy or other see below
#database_connection = mysql://billingstack:billingstack@localhost:3306/billingstack
#connection_debug = 100
#connection_trace = False
#sqlite_synchronous = True
#idle_timeout = 3600
#max_retries = 10
#retry_interval = 10
#################################
## Identity Storage Configuration
#################################
#-----------------------
# Identity SQLAlchemy Storage
#-----------------------
[identity:sqlalchemy]
# Database connection string - to configure options for a given implementation
# like sqlalchemy or other see below
#database_connection = mysql://billingstack:billingstack@localhost:3306/billingstack
#connection_debug = 100
#connection_trace = False
#sqlite_synchronous = True
#idle_timeout = 3600
#max_retries = 10
#retry_interval = 10