- fix UP/DOWN summary on nodes page.
[monitor.git] / web / MonitorWeb / dev.cfg
1 [global]
2 # This is where all of your settings go for your development environment
3 # Settings that are the same for both development and production
4 # (such as template engine, encodings, etc.) all go in
5 # monitorweb/config/app.cfg
6
7 # DATABASE
8
9 # driver://username:password@host:port/database
10
11 # pick the form for your database
12 # sqlalchemy.dburi="postgres://username@hostname/databasename"
13 # sqlalchemy.dburi="mysql://username:password@hostname:port/databasename"
14 # sqlalchemy.dburi="sqlite://%(current_dir_uri)s/devdata.sqlite"
15
16 # If you have sqlite, here's a simple default to get you started
17 # in development
18 sqlalchemy.dburi="sqlite:///devdata.sqlite"
19
20
21 # SERVER
22
23 # Some server parameters that you may want to tweak
24 # server.socket_port=8080
25
26 # Enable the debug output at the end on pages.
27 # log_debug_info_filter.on = False
28
29 #server.environment="development"
30 server.environment="development"
31 autoreload.package="monitorweb"
32
33
34 server.socket_host="www.planet-lab.eu"
35 server.socket_port=8082
36 #server.webpath="/monitor/"
37 #base_url_filter.on = False
38 #base_url_filter.base_url = "http://127.0.0.1:8080/monitor"
39 #base_url_filter.use_x_forwarded_host = True
40
41 # Auto-Reload after code modification
42 # autoreload.on = True
43
44 # Set to True if you'd like to abort execution if a controller gets an
45 # unexpected parameter. False by default
46 tg.strict_parameters = True
47
48 # LOGGING
49 # Logging configuration generally follows the style of the standard
50 # Python logging module configuration. Note that when specifying
51 # log format messages, you need to use *() for formatting variables.
52 # Deployment independent log configuration is in monitorweb/config/log.cfg
53 [logging]
54
55 [[loggers]]
56 [[[monitorweb]]]
57 level='DEBUG'
58 qualname='monitorweb'
59 handlers=['debug_out']
60
61 [[[allinfo]]]
62 level='INFO'
63 handlers=['debug_out']
64
65 [[[access]]]
66 level='INFO'
67 qualname='turbogears.access'
68 handlers=['access_out']
69 propagate=0
70
71
72 [[[database]]]
73 # Set to INFO to make SQLAlchemy display SQL commands
74 level='ERROR'
75 qualname='sqlalchemy.engine'
76 handlers=['debug_out']
77 propagate=0