~markwash/network-service/style-points

« back to all changes in this revision

Viewing changes to etc/melange.conf.test

  • Committer: rajarammallya
  • Date: 2011-05-09 12:43:45 UTC
  • Revision ID: rajarammallya@gmail.com-20110509124345-74shtwgg4kzj4z4x
initial repo for melange

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
[DEFAULT]
 
2
# Show more verbose log output (sets INFO log level output)
 
3
verbose = True
 
4
 
 
5
# Show debugging output in logs (sets DEBUG log level output)
 
6
debug = False
 
7
 
 
8
[app:melange]
 
9
paste.app_factory = melange.ipam.service:app_factory
 
10
 
 
11
# Address to bind the API server
 
12
bind_host = 0.0.0.0
 
13
 
 
14
# Port the bind the API server to
 
15
bind_port = 9292
 
16
 
 
17
# SQLAlchemy connection string for the reference implementation                                   
 
18
# registry server. Any valid SQLAlchemy connection string is fine. 
 
19
# See: http://www.sqlalchemy.org/docs/05/reference/sqlalchemy/connections.html#sqlalchemy.create_engine
 
20
sql_connection = sqlite:///melange.sqlite
 
21
 
 
22
# Period in seconds after which SQLAlchemy should reestablish its connection
 
23
# to the database.
 
24
#
 
25
# MySQL uses a default `wait_timeout` of 8 hours, after which it will drop
 
26
# idle connections. This can result in 'MySQL Gone Away' exceptions. If you
 
27
# notice this, you can lower this value to ensure that SQLAlchemy reconnects
 
28
# before MySQL can drop the connection.
 
29
sql_idle_timeout = 3600
 
30
 
 
31