Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigigraph / development.ini @ c1c106e4

History | View | Annotate | Download (4.94 KB)

1
#
2
# vigigraph - 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 = true
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 = 8082
21

    
22
[app:main]
23
use = egg:vigilo-vigigraph
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
logo_link = /
31

    
32
app.vigicore = /
33

    
34
; Emplacement des applications (vigirrd, Nagios, ...)
35
; sur les serveurs distants.
36
app_path.vigirrd = /
37
app_path.nagios = /nagios/
38

    
39
; Schéma ("protocol") à utiliser pour se connecter
40
; à l'application. En général : http ou https.
41
; Par défaut : http
42
app_scheme.vigirrd = http
43
app_scheme.nagios = http
44

    
45
; Port de connexion au serveur distant hébergeant
46
; l'application.
47
; Par défaut : 80
48
app_port.vigirrd = 8084
49
app_port.nagios = 80
50

    
51
# Délai de rafraîchissement (en secondes)
52
refresh_delay = 30
53

    
54
full_stack = true
55
cache_dir = %(here)s/data
56
beaker.session.key = vigigraph
57
beaker.session.secret = vigilo
58
sa_auth.cookie_secret = vigilo
59

    
60
# If you'd like to fine-tune the individual locations of the cache data dirs
61
# for the Cache data, or the Session saves, un-comment the desired settings
62
# here:
63
#beaker.cache.data_dir = %(here)s/data/cache
64
#beaker.session.data_dir = %(here)s/data/sessions
65

    
66
# pick the form for your database
67
# %(here) may include a ':' character on Windows environments; this can
68
# invalidate the URI when specifying a SQLite db via path name
69
# sqlalchemy.url=postgres://username:password@hostname:port/databasename
70
# sqlalchemy.url=mysql://username:password@hostname:port/databasename
71

    
72

    
73
# If you have sqlite, here's a simple default to get you started
74
# in development
75

    
76
sqlalchemy.url=postgresql://vigilo:vigilo@127.0.0.1/vigilo
77
#sqlalchemy.url = sqlite:///%(here)s/devdata.db
78
#echo shouldn't be used together with the logging module.
79
sqlalchemy.echo = false
80
sqlalchemy.echo_pool = false
81
sqlalchemy.pool_recycle = 3600
82

    
83
# if you are using Mako and want to be able to reload
84
# the mako template from disk during the development phase
85
# you should say 'true' here
86
# This option is only used for mako templating engine
87
# WARNING: if you want to deploy your application using a zipped egg
88
# (ie: if your application's setup.py defines zip-safe=True, then you
89
# MUST put "false" for the production environment because there will
90
# be no disk and real files to compare time with.
91
# On the contrary if your application defines zip-safe=False and is
92
# deployed in an unzipped manner, then you can leave this option to true
93
templating.mako.reloadfromdisk = true
94

    
95
# the compiled template dir is a directory that must be readable by your
96
# webserver. It will be used to store the resulting templates once compiled
97
# by the TemplateLookup system.
98
# During development you generally don't need this option since paste's HTTP
99
# server will have access to you development directories, but in production
100
# you'll most certainly want to have apache or nginx to write in a directory
101
# that does not contain any source code in any form for obvious security reasons.
102
#
103
#templating.mako.compiled_templates_dir = /some/dir/where/webserver/has/access
104

    
105
# WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
106
# Debug mode will enable the interactive debugging tool, allowing ANYONE to
107
# execute malicious code after an exception is raised.
108
#set debug = false
109

    
110
auth.config = %(here)s/who.ini
111
#auth.log_file = stdout
112
#auth.log_level = debug
113

    
114
# Logging configuration
115
# Add additional loggers, handlers, formatters here
116
# Uses python's logging config file format
117
# http://docs.python.org/lib/logging-config-fileformat.html
118

    
119
[loggers]
120
keys = root, vigigraph, sqlalchemy, auth
121

    
122
[handlers]
123
keys = console
124

    
125
[formatters]
126
keys = generic
127

    
128
# If you create additional loggers, add them as a key to [loggers]
129
[logger_root]
130
level = INFO
131
handlers = console
132

    
133
[logger_vigigraph]
134
level = DEBUG
135
handlers =
136
qualname = vigigraph
137

    
138
[logger_sqlalchemy]
139
level = INFO
140
handlers =
141
qualname = sqlalchemy.engine
142
# "level = INFO" logs SQL queries.
143
# "level = DEBUG" logs SQL queries and results.
144
# "level = WARN" logs neither.  (Recommended for production systems.)
145

    
146

    
147
# A logger for authentication, identification and authorization -- this is
148
# repoze.who and repoze.what:
149
[logger_auth]
150
level = WARN
151
handlers =
152
qualname = auth
153

    
154
# If you create additional handlers, add them as a key to [handlers]
155
[handler_console]
156
class = StreamHandler
157
args = (sys.stderr,)
158
level = NOTSET
159
formatter = generic
160

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