[REL] OpenERP 6.1rc1
[odoo/odoo.git] / gunicorn.conf.py
1 # Gunicorn sample configuration file.
2 # See http://gunicorn.org/configure.html for more details.
3 #
4 # To run OpenERP via Gunicorn, change the appropriate
5 # settings below, in order to provide the parameters that
6 # would normally be passed in the command-line,
7 # (at least `bind` and `conf['addons_path']`), then execute:
8 #  $ gunicorn openerp:wsgi.application -c gunicorn.conf.py
9
10 import openerp
11
12 # Standard OpenERP XML-RPC port is 8069
13 bind = '127.0.0.1:8069'
14
15 pidfile = '.gunicorn.pid'
16
17 # Gunicorn recommends 2-4 x number_of_cpu_cores, but
18 # you'll want to vary this a bit to find the best for your
19 # particular work load.
20 workers = 4
21
22 # Some application-wide initialization is needed.
23 on_starting = openerp.wsgi.on_starting
24 when_ready = openerp.wsgi.when_ready
25
26 # openerp request-response cycle can be quite long for
27 # big reports for example
28 timeout = 240
29
30 # Equivalent of --load command-line option
31 openerp.conf.server_wide_modules = ['web']
32
33 # internal TODO: use openerp.conf.xxx when available
34 conf = openerp.tools.config
35
36 # Path to the OpenERP Addons repository (comma-separated for
37 # multiple locations)
38 conf['addons_path'] = '/home/openerp/addons/trunk,/home/openerp/web/trunk/addons'
39
40 # Optional database config if not using local socket
41 #conf['db_name'] = 'mycompany'
42 #conf['db_host'] = 'localhost'
43 #conf['db_user'] = 'foo'
44 #conf['db_port'] = 5432
45 #conf['db_password'] = 'secret'
46
47 # OpenERP Log Level
48 # DEBUG=10, DEBUG_RPC=8, DEBUG_RPC_ANSWER=6, DEBUG_SQL=5, INFO=20,
49 # WARNING=30, ERROR=40, CRITICAL=50
50 # conf['log_level'] = 20
51
52 # If --static-http-enable is used, path for the static web directory
53 #conf['static_http_document_root'] = '/var/www'
54
55
56 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: