Add an option "Tax calculation rounding method" that can be set to "Round per line...
[odoo/odoo.git] / gunicorn.conf.py
index 949ccc0..0f1d93a 100644 (file)
@@ -1,11 +1,15 @@
 # Gunicorn sample configuration file.
 # See http://gunicorn.org/configure.html for more details.
 #
-# To run OpenERP via Gunicorn, change the appropriate
+# To run the OpenERP server via Gunicorn, change the appropriate
 # settings below, in order to provide the parameters that
 # would normally be passed in the command-line,
 # (at least `bind` and `conf['addons_path']`), then execute:
-#  $ gunicorn openerp:wsgi.application -c gunicorn.conf.py
+#   $ gunicorn openerp:wsgi.core.application -c gunicorn.conf.py
+# or if you want to run it behind a reverse proxy, add the line
+#   import openerp.wsgi.proxied
+# in this file and execute:
+#   $ gunicorn openerp:wsgi.proxied.application -c gunicorn.conf.py
 
 import openerp
 
@@ -20,13 +24,17 @@ pidfile = '.gunicorn.pid'
 workers = 4
 
 # Some application-wide initialization is needed.
-on_starting = openerp.wsgi.on_starting
-when_ready = openerp.wsgi.when_ready
+on_starting = openerp.wsgi.core.on_starting
+when_ready = openerp.wsgi.core.when_ready
+pre_request = openerp.wsgi.core.pre_request
+post_request = openerp.wsgi.core.post_request
 
 # openerp request-response cycle can be quite long for
 # big reports for example
 timeout = 240
 
+max_requests = 2000
+
 # Equivalent of --load command-line option
 openerp.conf.server_wide_modules = ['web']
 
@@ -35,14 +43,14 @@ conf = openerp.tools.config
 
 # Path to the OpenERP Addons repository (comma-separated for
 # multiple locations)
-conf['addons_path'] = '/opt/openerp_61Launchpad/src/webclient/addons/,/opt/openerp_61Launchpad/src/server/openerp/addons'
+conf['addons_path'] = '/home/openerp/addons/trunk,/home/openerp/web/trunk/addons'
 
 # Optional database config if not using local socket
 #conf['db_name'] = 'mycompany'
 #conf['db_host'] = 'localhost'
-conf['db_user'] = 'openerp_geoengine'
+#conf['db_user'] = 'foo'
 #conf['db_port'] = 5432
-conf['db_password'] = 'toto'
+#conf['db_password'] = 'secret'
 
 # OpenERP Log Level
 # DEBUG=10, DEBUG_RPC=8, DEBUG_RPC_ANSWER=6, DEBUG_SQL=5, INFO=20,
@@ -52,5 +60,4 @@ conf['db_password'] = 'toto'
 # If --static-http-enable is used, path for the static web directory
 #conf['static_http_document_root'] = '/var/www'
 
-
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: