Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigigraph / development.ini @ 6fd1ce8f

History | View | Annotate | Download (4.83 KB)

1 0931fc44 Thomas BURGUIERE
#
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 301d508e Francois POIROTTE
# that is always required for the app is done in the config directory,
8
# and generally should not be modified by end users.
9 0931fc44 Thomas BURGUIERE
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 301d508e Francois POIROTTE
host = 0.0.0.0
20 4cdb7492 Thomas BURGUIERE
port = 8082
21 0931fc44 Thomas BURGUIERE
22
[app:main]
23 198885a1 Aurelien BOMPARD
use = egg:vigilo-vigigraph
24 4964dc96 Vincent QUEMENER
25 454df3f9 Francois POIROTTE
db_basename=vigilo_
26 23858a1c Francois POIROTTE
password_schemes=sha256_crypt
27
deprecated_password_schemes=hex_md5
28 4964dc96 Vincent QUEMENER
lang=fr
29 d7188849 Francois POIROTTE
help_link=http://foo.bar/help
30 6fd1ce8f Francois POIROTTE
logo_link = /
31 d7188849 Francois POIROTTE
32 98c1bcf7 Thomas BURGUIERE
app.vigicore = /
33 0931fc44 Thomas BURGUIERE
34 fa7cea2a Aurelien BOMPARD
; Emplacement des applications (vigirrd, Nagios, ...)
35 2ed2fd99 Francois POIROTTE
; sur les serveurs distants.
36 7c9baa43 Francois POIROTTE
app_path.vigirrd = /
37 2ed2fd99 Francois POIROTTE
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 fa7cea2a Aurelien BOMPARD
app_scheme.vigirrd = http
43 2ed2fd99 Francois POIROTTE
app_scheme.nagios = http
44
45
; Port de connexion au serveur distant hébergeant
46
; l'application.
47
; Par défaut : 80
48 7c9baa43 Francois POIROTTE
app_port.vigirrd = 8084
49 2ed2fd99 Francois POIROTTE
app_port.nagios = 80
50 4964dc96 Vincent QUEMENER
51 8089d65a Francois POIROTTE
; Délai de rafraîchissement (en secondes)
52 a5b1b312 Francois POIROTTE
refresh_delay = 30
53 4964dc96 Vincent QUEMENER
54 8089d65a Francois POIROTTE
; Liste des noms des groupes d'utilisateurs privilégiés,
55
; séparés par des virgules.
56
; Par défaut : "managers"
57
admin_groups = managers
58
59 462f589e Francois POIROTTE
full_stack = true
60
cache_dir = %(here)s/data
61
beaker.session.key = vigigraph
62
beaker.session.secret = vigilo
63
sa_auth.cookie_secret = vigilo
64
65 0931fc44 Thomas BURGUIERE
# If you'd like to fine-tune the individual locations of the cache data dirs
66
# for the Cache data, or the Session saves, un-comment the desired settings
67
# here:
68
#beaker.cache.data_dir = %(here)s/data/cache
69
#beaker.session.data_dir = %(here)s/data/sessions
70
71
# If you have sqlite, here's a simple default to get you started
72
# in development
73 6a7fa300 Francois POIROTTE
sqlalchemy.url=postgresql://vigilo:vigilo@127.0.0.1/vigilo
74 4964dc96 Vincent QUEMENER
#sqlalchemy.url = sqlite:///%(here)s/devdata.db
75 0931fc44 Thomas BURGUIERE
#echo shouldn't be used together with the logging module.
76
sqlalchemy.echo = false
77
sqlalchemy.echo_pool = false
78
sqlalchemy.pool_recycle = 3600
79
80
# if you are using Mako and want to be able to reload
81
# the mako template from disk during the development phase
82
# you should say 'true' here
83
# This option is only used for mako templating engine
84
# WARNING: if you want to deploy your application using a zipped egg
85
# (ie: if your application's setup.py defines zip-safe=True, then you
86
# MUST put "false" for the production environment because there will
87
# be no disk and real files to compare time with.
88
# On the contrary if your application defines zip-safe=False and is
89
# deployed in an unzipped manner, then you can leave this option to true
90
templating.mako.reloadfromdisk = true
91
92
# the compiled template dir is a directory that must be readable by your
93
# webserver. It will be used to store the resulting templates once compiled
94
# by the TemplateLookup system.
95
# During development you generally don't need this option since paste's HTTP
96
# server will have access to you development directories, but in production
97
# you'll most certainly want to have apache or nginx to write in a directory
98
# that does not contain any source code in any form for obvious security reasons.
99
#
100
#templating.mako.compiled_templates_dir = /some/dir/where/webserver/has/access
101
102
# WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
103
# Debug mode will enable the interactive debugging tool, allowing ANYONE to
104
# execute malicious code after an exception is raised.
105
#set debug = false
106
107 301d508e Francois POIROTTE
auth.config = %(here)s/who.ini
108
#auth.log_file = stdout
109
#auth.log_level = debug
110
111 0931fc44 Thomas BURGUIERE
# Logging configuration
112
# Add additional loggers, handlers, formatters here
113
# Uses python's logging config file format
114
# http://docs.python.org/lib/logging-config-fileformat.html
115
116
[loggers]
117
keys = root, vigigraph, sqlalchemy, auth
118
119
[handlers]
120
keys = console
121
122
[formatters]
123
keys = generic
124
125
# If you create additional loggers, add them as a key to [loggers]
126
[logger_root]
127
level = INFO
128
handlers = console
129
130
[logger_vigigraph]
131
level = DEBUG
132
handlers =
133
qualname = vigigraph
134
135
[logger_sqlalchemy]
136
level = INFO
137
handlers =
138
qualname = sqlalchemy.engine
139
# "level = INFO" logs SQL queries.
140
# "level = DEBUG" logs SQL queries and results.
141
# "level = WARN" logs neither.  (Recommended for production systems.)
142
143
144
# A logger for authentication, identification and authorization -- this is
145
# repoze.who and repoze.what:
146
[logger_auth]
147 79e7589f Francois POIROTTE
level = INFO
148 301d508e Francois POIROTTE
handlers =
149 0931fc44 Thomas BURGUIERE
qualname = auth
150
151
# If you create additional handlers, add them as a key to [handlers]
152
[handler_console]
153
class = StreamHandler
154
args = (sys.stderr,)
155
level = NOTSET
156
formatter = generic
157
158
# If you create additional formatters, add them as a key to [formatters]
159
[formatter_generic]
160
format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
161
datefmt = %H:%M:%S
162 4a4e1e3a Francois POIROTTE
class = vigilo.common.logging.VigiloFormatter