##// END OF EJS Templates
removed unneded options from config files
marcink -
r342:c71dc6ef default
parent child Browse files
Show More
@@ -1,136 +1,133 b''
1 1 ################################################################################
2 2 ################################################################################
3 3 # pylons_app - Pylons environment configuration #
4 4 # #
5 5 # The %(here)s variable will be replaced with the parent directory of this file#
6 6 ################################################################################
7 7
8 8 [DEFAULT]
9 9 debug = true
10 10 ############################################
11 11 ## Uncomment and replace with the address ##
12 12 ## which should receive any error reports ##
13 13 ############################################
14 14 #email_to = admin@localhost
15 15 #smtp_server = mail.server.com
16 16 #error_email_from = paste_error@localhost
17 17 #smtp_username =
18 18 #smtp_password =
19 19 #error_message = 'mercurial crash !'
20 20
21 21 [server:main]
22 22 ##nr of threads to spawn
23 23 threadpool_workers = 5
24 24
25 25 ##max request before
26 26 threadpool_max_requests = 2
27 27
28 28 ##option to use threads of process
29 29 use_threadpool = true
30 30
31 31 use = egg:Paste#http
32 32 host = 127.0.0.1
33 33 port = 5000
34 34
35 35 [app:main]
36 36 use = egg:pylons_app
37 37 full_stack = true
38 38 static_files = true
39 39 lang=en
40 40 cache_dir = %(here)s/data
41 ##a name for our application
42 hg_app_name = Python-works
43 hg_app_repo_conf = repositories.config
44 41
45 42 ####################################
46 43 ### BEAKER CACHE ####
47 44 ####################################
48 45 beaker.cache.data_dir=/%(here)s/data/cache/data
49 46 beaker.cache.lock_dir=/%(here)s/data/cache/lock
50 47 beaker.cache.regions=short_term,long_term
51 48 beaker.cache.long_term.type=memory
52 49 beaker.cache.long_term.expire=36000
53 50 beaker.cache.short_term.type=memory
54 51 beaker.cache.short_term.expire=60
55 52
56 53 ################################################################################
57 54 ## WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT* ##
58 55 ## Debug mode will enable the interactive debugging tool, allowing ANYONE to ##
59 56 ## execute malicious code after an exception is raised. ##
60 57 ################################################################################
61 58 #set debug = false
62 59
63 60 ##################################
64 61 ### LOGVIEW CONFIG ###
65 62 ##################################
66 63 logview.sqlalchemy = #faa
67 64 logview.pylons.templating = #bfb
68 65 logview.pylons.util = #eee
69 66
70 67 #########################################################
71 68 ### DB CONFIGS - EACH DB WILL HAVE IT'S OWN CONFIG ###
72 69 #########################################################
73 70 sqlalchemy.db1.url = sqlite:///%(here)s/hg_app.db
74 71 #sqlalchemy.db1.echo = False
75 72 #sqlalchemy.db1.pool_recycle = 3600
76 73 sqlalchemy.convert_unicode = true
77 74
78 75 ################################
79 76 ### LOGGING CONFIGURATION ####
80 77 ################################
81 78 [loggers]
82 79 keys = root, routes, pylons_app, sqlalchemy
83 80
84 81 [handlers]
85 82 keys = console
86 83
87 84 [formatters]
88 85 keys = generic,color_formatter
89 86
90 87 #############
91 88 ## LOGGERS ##
92 89 #############
93 90 [logger_root]
94 91 level = NOTSET
95 92 handlers = console
96 93
97 94 [logger_routes]
98 95 level = DEBUG
99 96 handlers = console
100 97 qualname = routes.middleware
101 98 # "level = DEBUG" logs the route matched and routing variables.
102 99
103 100 [logger_pylons_app]
104 101 level = DEBUG
105 102 handlers = console
106 103 qualname = pylons_app
107 104 propagate = 0
108 105
109 106 [logger_sqlalchemy]
110 107 level = ERROR
111 108 handlers = console
112 109 qualname = sqlalchemy.engine
113 110 propagate = 0
114 111
115 112 ##############
116 113 ## HANDLERS ##
117 114 ##############
118 115
119 116 [handler_console]
120 117 class = StreamHandler
121 118 args = (sys.stderr,)
122 119 level = NOTSET
123 120 formatter = color_formatter
124 121
125 122 ################
126 123 ## FORMATTERS ##
127 124 ################
128 125
129 126 [formatter_generic]
130 127 format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
131 128 datefmt = %Y-%m-%d %H:%M:%S
132 129
133 130 [formatter_color_formatter]
134 131 class=pylons_app.lib.colored_formatter.ColorFormatter
135 132 format= %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
136 133 datefmt = %Y-%m-%d %H:%M:%S No newline at end of file
@@ -1,136 +1,134 b''
1 1 ################################################################################
2 2 ################################################################################
3 3 # pylons_app - Pylons environment configuration #
4 4 # #
5 5 # The %(here)s variable will be replaced with the parent directory of this file#
6 6 ################################################################################
7 7
8 8 [DEFAULT]
9 9 debug = true
10 10 ############################################
11 11 ## Uncomment and replace with the address ##
12 12 ## which should receive any error reports ##
13 13 ############################################
14 14 #email_to = admin@localhost
15 15 #smtp_server = mail.server.com
16 16 #error_email_from = paste_error@localhost
17 17 #smtp_username =
18 18 #smtp_password =
19 19 #error_message = 'mercurial crash !'
20 20
21 21 [server:main]
22 22 ##nr of threads to spawn
23 23 threadpool_workers = 5
24 24
25 25 ##max request before
26 26 threadpool_max_requests = 2
27 27
28 28 ##option to use threads of process
29 29 use_threadpool = true
30 30
31 31 use = egg:Paste#http
32 32 host = 127.0.0.1
33 33 port = 8001
34 34
35 35 [app:main]
36 36 use = egg:pylons_app
37 37 full_stack = true
38 38 static_files = false
39 39 lang=en
40 40 cache_dir = %(here)s/data
41 ##a name for our application
42 hg_app_name = Python-works
43 hg_app_repo_conf = repositories.config
41
44 42
45 43 ####################################
46 44 ### BEAKER CACHE ####
47 45 ####################################
48 46 beaker.cache.data_dir=/%(here)s/data/cache/data
49 47 beaker.cache.lock_dir=/%(here)s/data/cache/lock
50 48 beaker.cache.regions=short_term,long_term
51 49 beaker.cache.long_term.type=memory
52 50 beaker.cache.long_term.expire=36000
53 51 beaker.cache.short_term.type=memory
54 52 beaker.cache.short_term.expire=60
55 53
56 54 ################################################################################
57 55 ## WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT* ##
58 56 ## Debug mode will enable the interactive debugging tool, allowing ANYONE to ##
59 57 ## execute malicious code after an exception is raised. ##
60 58 ################################################################################
61 59 set debug = false
62 60
63 61 ##################################
64 62 ### LOGVIEW CONFIG ###
65 63 ##################################
66 64 logview.sqlalchemy = #faa
67 65 logview.pylons.templating = #bfb
68 66 logview.pylons.util = #eee
69 67
70 68 #########################################################
71 69 ### DB CONFIGS - EACH DB WILL HAVE IT'S OWN CONFIG ###
72 70 #########################################################
73 71 sqlalchemy.db1.url = sqlite:///%(here)s/hg_app.db
74 72 #sqlalchemy.db1.echo = False
75 73 #sqlalchemy.db1.pool_recycle = 3600
76 74 sqlalchemy.convert_unicode = true
77 75
78 76 ################################
79 77 ### LOGGING CONFIGURATION ####
80 78 ################################
81 79 [loggers]
82 80 keys = root, routes, pylons_app, sqlalchemy
83 81
84 82 [handlers]
85 83 keys = console
86 84
87 85 [formatters]
88 86 keys = generic,color_formatter
89 87
90 88 #############
91 89 ## LOGGERS ##
92 90 #############
93 91 [logger_root]
94 92 level = INFO
95 93 handlers = console
96 94
97 95 [logger_routes]
98 96 level = INFO
99 97 handlers = console
100 98 qualname = routes.middleware
101 99 # "level = DEBUG" logs the route matched and routing variables.
102 100
103 101 [logger_pylons_app]
104 102 level = DEBUG
105 103 handlers = console
106 104 qualname = pylons_app
107 105 propagate = 0
108 106
109 107 [logger_sqlalchemy]
110 108 level = ERROR
111 109 handlers = console
112 110 qualname = sqlalchemy.engine
113 111 propagate = 0
114 112
115 113 ##############
116 114 ## HANDLERS ##
117 115 ##############
118 116
119 117 [handler_console]
120 118 class = StreamHandler
121 119 args = (sys.stderr,)
122 120 level = NOTSET
123 121 formatter = color_formatter
124 122
125 123 ################
126 124 ## FORMATTERS ##
127 125 ################
128 126
129 127 [formatter_generic]
130 128 format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
131 129 datefmt = %Y-%m-%d %H:%M:%S
132 130
133 131 [formatter_color_formatter]
134 132 class=pylons_app.lib.colored_formatter.ColorFormatter
135 133 format= %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
136 134 datefmt = %Y-%m-%d %H:%M:%S No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now