Skip to content

Instantly share code, notes, and snippets.

@mccxj
Created November 10, 2012 13:30
Show Gist options
  • Save mccxj/4051056 to your computer and use it in GitHub Desktop.
Save mccxj/4051056 to your computer and use it in GitHub Desktop.
openerp-server.conf
#/etc/openerp-server.conf(5) - configuration file for openerp-server(1)
[options]
# Enable the debugging mode (default False).
verbose = False
debug_mode = False
# The file where the server pid will be stored (default False).
#pidfile = /var/run/openerp.pid
# The file where the server log will be stored (default False).
logfile = /var/log/openerp-server.log
# The unix account on behalf openerp is running.
process_user = zg
# The IP address on which the server will bind.
# If empty, it will bind on all interfaces (default empty).
interface =
# The TCP port on which the server will listen (default 8069).
#port = 8070
# Enable debug mode (default False).
debug_mode = False
# Launch server over https instead of http (default False).
secure = False
# Specify the SMTP server for sending email (default localhost).
smtp_server = localhost
# Specify the SMTP user for sending email (default False).
smtp_user = False
# Specify the SMTP password for sending email (default False).
smtp_password = False
# Specify the database name.
db_name =
# Specify the database user name (default None).
db_user = openerp
# Specify the database password for db_user (default None).
db_password = ******
# Specify the database host (default localhost).
db_host = localhost
# Specify the database port (default None).
db_port = 5432
# Specify the price accuracy.
#price_accuracy =
@fabiante
Copy link

How up to date is this? Can it be used with the modern version of flectra?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment