diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /setup/odoo-wsgi.example.py | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'setup/odoo-wsgi.example.py')
| -rw-r--r-- | setup/odoo-wsgi.example.py | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/setup/odoo-wsgi.example.py b/setup/odoo-wsgi.example.py new file mode 100644 index 00000000..58b0d126 --- /dev/null +++ b/setup/odoo-wsgi.example.py @@ -0,0 +1,53 @@ +# WSGI Handler sample configuration file. +# +# Change the appropriate settings below, in order to provide the parameters +# that would normally be passed in the command-line. +# (at least conf['addons_path']) +# +# For generic wsgi handlers a global application is defined. +# For uwsgi this should work: +# $ uwsgi_python --http :9090 --pythonpath . --wsgi-file openerp-wsgi.py +# +# For gunicorn additional globals need to be defined in the Gunicorn section. +# Then the following command should run: +# $ gunicorn odoo:service.wsgi_server.application -c openerp-wsgi.py + +import odoo + +#---------------------------------------------------------- +# Common +#---------------------------------------------------------- +odoo.multi_process = True # Nah! + +# Equivalent of --load command-line option +odoo.conf.server_wide_modules = ['base', 'web'] +conf = odoo.tools.config + +# Path to the OpenERP Addons repository (comma-separated for +# multiple locations) + +conf['addons_path'] = '../../addons/trunk,../../web/trunk/addons' + +# Optional database config if not using local socket +#conf['db_name'] = 'mycompany' +#conf['db_host'] = 'localhost' +#conf['db_user'] = 'foo' +#conf['db_port'] = 5432 +#conf['db_password'] = 'secret' + +#---------------------------------------------------------- +# Generic WSGI handlers application +#---------------------------------------------------------- +application = odoo.service.wsgi_server.application + +odoo.service.server.load_server_wide_modules() + +#---------------------------------------------------------- +# Gunicorn +#---------------------------------------------------------- +# Standard OpenERP XML-RPC port is 8069 +bind = '127.0.0.1:8069' +pidfile = '.gunicorn.pid' +workers = 4 +timeout = 240 +max_requests = 2000 |
