~abentley/charms/precise/juju-reports/develop-install

« back to all changes in this revision

Viewing changes to templates/ini.tmpl

  • Committer: j.c.sackett
  • Date: 2014-02-11 20:19:28 UTC
  • Revision ID: jcsackett@canonical.com-20140211201928-iw8z39pmos1augeu
Update ini instead of deleting and reinstalling from template.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
###
2
 
# app configuration
3
 
# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html
4
 
###
5
 
 
6
 
[app:main]
7
 
use = egg:jujureports
8
 
 
9
 
pyramid.reload_templates = false
10
 
pyramid.debug_authorization = false
11
 
pyramid.debug_notfound = false
12
 
pyramid.debug_routematch = false
13
 
pyramid.default_locale_name = en
14
 
 
15
 
openid_teams = juju
16
 
mongo.url = $mongo_url
17
 
mongo.database = juju
18
 
jenkins.url = http://162.213.35.54
19
 
jenkins.port = 8080
20
 
###
21
 
# wsgi server configuration
22
 
###
23
 
 
24
 
[server:main]
25
 
use = egg:waitress#main
26
 
host = 0.0.0.0
27
 
port = 6543
28
 
 
29
 
###
30
 
# logging configuration
31
 
# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html
32
 
###
33
 
 
34
 
[loggers]
35
 
keys = root, jujureports
36
 
 
37
 
[handlers]
38
 
keys = console
39
 
 
40
 
[formatters]
41
 
keys = generic
42
 
 
43
 
[logger_root]
44
 
level = WARN
45
 
handlers = console
46
 
 
47
 
[logger_jujureports]
48
 
level = WARN
49
 
handlers =
50
 
qualname = jujureports
51
 
 
52
 
[handler_console]
53
 
class = StreamHandler
54
 
args = (sys.stderr,)
55
 
level = NOTSET
56
 
formatter = generic
57
 
 
58
 
[formatter_generic]
59
 
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s