Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigiboard / deployment / settings.ini @ 79fa773b

History | View | Annotate | Download (4.46 KB)

1
;
2
; vigiboard - Pylons development environment configuration
3
;
4
; The %(here)s variable will be replaced with the parent directory of this file
5
;
6
; This file is for deployment specific config options -- other configuration
7
; that is always required for the app is done in the config directory, 
8
; and generally should not be modified by end users. 
9

    
10
[DEFAULT]
11
debug = false
12
; Uncomment and replace with the address which should receive any error reports
13
;email_to = you@yourdomain.com
14
smtp_server = localhost
15
error_email_from = paste@localhost
16

    
17
[server:main]
18
use = egg:Paste#http
19
host = 0.0.0.0 
20
port = 80
21

    
22
[app:main]
23
use = egg:vigiboard
24

    
25
db_basename=vigilo_
26
password_hashing_function=md5
27
lang=fr
28
use_kerberos=False
29
help_link=http://foo.bar/help
30

    
31
; Nombre d'événements par page.
32
vigiboard_items_per_page = 15
33

    
34
; URL vers laquelle le logo de Vigilo redirige.
35
logo_link = /
36

    
37
; Ordre de tri pour la priorité des événements.
38
; - Utiliser "asc" si la priorité est inversement proportionnelle à sa
39
;   valeur (ie: plus le nombre est bas, plus la priorité est élevée).
40
; - Utiliser "desc" si la priorité est proportionnelle à sa valeur
41
;   (ie: plus le nombre est élevé, plus la priorité est élevée).
42
; NE PAS METTRE DE GUILLEMETS/APOSTROPHES AUTOUR DE LA VALEUR.
43
vigiboard_priority_order = asc
44

    
45
; Default font size, must be a valid size as per the CSS 2.1 specification.
46
; See http://www.w3.org/TR/CSS21/fonts.html#font-size-props
47
vigiboard_font.size = 10px
48

    
49
; Indique si le tri des événements se fait d'abord sur l'état Nagios
50
; puis l'horodatage de l'événement, ou bien l'inverse.
51
; Dans tous les cas, d'autres critères de tri interviennent avant
52
; (état d'acquittement et priorité ITIL).
53
state_first = True
54

    
55
; Emplacement des applications (rrdgraph, Nagios, ...)
56
; sur les serveurs distants.
57
app_path.nagios = /nagios/
58

    
59
; Schéma ("protocol") à utiliser pour se connecter
60
; à l'application. En général : http ou https.
61
; Par défaut : http
62
app_scheme.nagios = http
63

    
64
; Port de connexion au serveur distant hébergeant
65
; l'application.
66
; Par défaut : 80
67
app_port.nagios = 80
68

    
69
full_stack = true
70
cache_dir = /tmp/vigilo/vigiboard/data
71
beaker.session.key = vigiboard
72
beaker.session.secret = vigilo
73
sa_auth.cookie_secret = vigilo
74

    
75
; If you'd like to fine-tune the individual locations of the cache data dirs
76
; for the Cache data, or the Session saves, un-comment the desired settings
77
; here:
78
;beaker.cache.data_dir = %(here)s/data/cache
79
;beaker.session.data_dir = %(here)s/data/sessions
80

    
81
; DB - sqlite fails, not postgresql ready, use mysql for now
82
sqlalchemy.url=postgres://vigilo:vigilo@localhost/vigilo
83

    
84
; echo shouldn't be used together with the logging module.
85
sqlalchemy.echo = false
86
sqlalchemy.echo_pool = false
87
sqlalchemy.pool_recycle = 3600
88

    
89
base_url_filter.base_url=
90
set debug = false
91

    
92
; Logging configuration
93
; Add additional loggers, handlers, formatters here
94
; Uses python's logging config file format
95
; http://docs.python.org/lib/logging-config-fileformat.html
96

    
97
[loggers]
98
keys = root, vigiboard, sqlalchemy, auth
99

    
100
[handlers]
101
keys = console,sql_log,root_log,vigiboard_log,auth_log
102

    
103
[formatters]
104
keys = generic
105

    
106
; If you create additional loggers, add them as a key to [loggers]
107
[logger_root]
108
level = INFO
109
handlers = root_log
110

    
111
[logger_vigiboard]
112
level = INFO
113
handlers = vigiboard_log
114
qualname = vigiboard
115

    
116
[logger_sqlalchemy]
117
level = INFO
118
handlers = sql_log
119
qualname = sqlalchemy.engine
120

    
121
; A logger for authentication, identification and authorization -- this is
122
; repoze.who and repoze.what:
123
[logger_auth]
124
level = INFO
125
handlers = auth_log
126
qualname = auth
127

    
128
; If you create additional handlers, add them as a key to [handlers]
129
[handler_console]
130
class = StreamHandler
131
args = (sys.stderr,)
132
level = NOTSET
133
formatter = generic
134

    
135
[handler_sql_log]
136
class = handlers.TimedRotatingFileHandler
137
args = ('/var/log/vigilo/vigiboard/sql.log','D', 30, 12)
138
level = DEBUG
139
formatter = generic
140

    
141
[handler_root_log]
142
class = handlers.TimedRotatingFileHandler
143
args = ('/var/log/vigilo/vigiboard/root.log', 'D', 30, 12)
144
level = DEBUG
145
formatter = generic
146

    
147
[handler_vigiboard_log]
148
class = handlers.TimedRotatingFileHandler
149
args = ('/var/log/vigilo/vigiboard/vigiboard.log', 'D', 30, 12)
150
level = DEBUG
151
formatter = generic
152

    
153
[handler_auth_log]
154
class = handlers.TimedRotatingFileHandler
155
args = ('/var/log/vigilo/vigiboard/auth.log', 'D', 30, 12)
156
level = DEBUG
157
formatter = generic
158

    
159
; If you create additional formatters, add them as a key to [formatters]
160
[formatter_generic]
161
format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
162
datefmt = %H:%M:%S
163