Launchpad automatic translations update.
[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 the OpenERP server 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.core.application -c gunicorn.conf.py
9 # or if you want to run it behind a reverse proxy, add the line
10 #   import openerp.wsgi.proxied
11 # in this file and execute:
12 #   $ gunicorn openerp:wsgi.proxied.application -c gunicorn.conf.py
13
14 import openerp
15
16 # Standard OpenERP XML-RPC port is 8069
17 bind = '127.0.0.1:8069'
18
19 pidfile = '.gunicorn.pid'
20
21 # Gunicorn recommends 2-4 x number_of_cpu_cores, but
22 # you'll want to vary this a bit to find the best for your
23 # particular work load.
24 workers = 4
25
26 # Some application-wide initialization is needed.
27 on_starting = openerp.wsgi.core.on_starting
28 pre_request = openerp.wsgi.core.pre_request
29 post_request = openerp.wsgi.core.post_request
30
31 # openerp request-response cycle can be quite long for
32 # big reports for example
33 timeout = 240
34
35 max_requests = 2000
36
37 # Equivalent of --load command-line option
38 openerp.conf.server_wide_modules = ['web']
39
40 # internal TODO: use openerp.conf.xxx when available
41 conf = openerp.tools.config
42
43 # Path to the OpenERP Addons repository (comma-separated for
44 # multiple locations)
45 conf['addons_path'] = '/home/openerp/addons/trunk,/home/openerp/web/trunk/addons'
46
47 # Optional database config if not using local socket
48 #conf['db_name'] = 'mycompany'
49 #conf['db_host'] = 'localhost'
50 #conf['db_user'] = 'foo'
51 #conf['db_port'] = 5432
52 #conf['db_password'] = 'secret'
53
54 # OpenERP Log Level
55 # DEBUG=10, DEBUG_RPC=8, DEBUG_RPC_ANSWER=6, DEBUG_SQL=5, INFO=20,
56 # WARNING=30, ERROR=40, CRITICAL=50
57 # conf['log_level'] = 20
58
59 # If --static-http-enable is used, path for the static web directory
60 #conf['static_http_document_root'] = '/var/www'
61
62 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: