forked from odoo/odoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
14 changed files
with
619 additions
and
333 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#!/usr/bin/python | ||
# 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 --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 openerp:wsgi.core.application -c gunicorn.conf.py | ||
|
||
import openerp | ||
|
||
#---------------------------------------------------------- | ||
# Common | ||
#---------------------------------------------------------- | ||
# Equivalent of --load command-line option | ||
openerp.conf.server_wide_modules = ['web'] | ||
conf = openerp.tools.config | ||
|
||
# Path to the OpenERP Addons repository (comma-separated for | ||
# multiple locations) | ||
conf['addons_path'] = '/home/openerp/addons/trunk,/home/openerp/web/trunk/addons' | ||
conf['addons_path'] = '/home/wis/stuff/version/openerp/source/addons/6.1,/home/wis/stuff/version/openerp/source/web/6.1/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 = openerp.service.wsgi_server.application | ||
|
||
#---------------------------------------------------------- | ||
# Gunicorn | ||
#---------------------------------------------------------- | ||
# Standard OpenERP XML-RPC port is 8069 | ||
bind = '127.0.0.1:8069' | ||
pidfile = '.gunicorn.pid' | ||
workers = 4 | ||
timeout = 240 | ||
max_requests = 2000 | ||
|
||
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.