source: ispmanccp-0.1.x/development.ini @ 97:763b7fa0b394

Revision 97:763b7fa0b394, 1.8 KB checked in by s0undt3ch, 3 years ago (diff)

[svn r137] Minor fixes in order for the app to actually work under new Pylons. There might still exist several bugs.

Line 
1#
2# ISPManCCP - Pylons development environment configuration
3#
4# The %(here)s variable will be replaced with the parent directory of this file
5#
6[DEFAULT]
7debug = true
8# Uncomment and replace with the address which should receive any error reports
9#email_to = you@yourdomain.com
10smtp_server = localhost
11error_email_from = paste@localhost
12
13[server:main]
14use = egg:Paste#http
15host = 0.0.0.0
16port = 5000
17use_threadpool = true
18threadpool_workers = 10
19
20[app:main]
21use = egg:ISPManCCP
22full_stack = true
23cache.enabled = true
24cache_dir = %(here)s/data
25beaker.session.key = ispmanccp
26beaker.session.secret = ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
27
28app_realm = Customer Control Panel
29ispman_base_dir = /home/vampas/projects/ISPManCCP/ispman-install
30bad_passwords_file = /usr/share/dict/cracklib-small
31passwords_min_length = 6
32passwords_non_letter_min_chars = 2
33
34
35# If you'd like to fine-tune the individual locations of the cache data dirs
36# for the Cache data, or the Session saves, un-comment the desired settings
37# here:
38beaker.cache.data_dir = %(here)s/data/cache
39beaker.session.data_dir = %(here)s/data/sessions
40
41# WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
42# Debug mode will enable the interactive debugging tool, allowing ANYONE to
43# execute malicious code after an exception is raised.
44#set debug = false
45
46
47# Logging configuration
48[loggers]
49keys = root, ispmanccp
50
51[handlers]
52keys = console
53
54[formatters]
55keys = generic
56
57[logger_root]
58;level = DEBUG
59level = INFO
60handlers = console
61
62[logger_ispmanccp]
63level = DEBUG
64handlers =
65qualname = ispmanccp
66
67[handler_console]
68class = StreamHandler
69args = (sys.stderr,)
70level = NOTSET
71formatter = generic
72
73[formatter_generic]
74format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
75datefmt = %H:%M:%S
Note: See TracBrowser for help on using the repository browser.