freebsd-ports/finance/openerp-web/files/openerp-web.conf
Wen Heping adfdf68ea9 The Web client of OpenObject offers a high quality and ergonomy client
for OpenObject and OpenERP. It is known to work with all major web
browsers available today, including Firefox, IE6, IE7, Safari3 and
Opera9.

WWW: https://launchpad.net/openobject-client-web

PR:		ports/143036
Submitted by:	Francisco de Borja Lapez Rao <borja@pexego.es>
2010-01-24 00:45:04 +00:00

59 lines
1.5 KiB
Text

# Example configuration file for OpenERP-web
#
# This is an example configuration file, just copy it
# to openerp-web.conf and edit it to suit your needs.
# OpenERP Web server
[global]
# the ip and port the web server will be listening on
server.socket_host = "0.0.0.0" # 0.0.0.0 means all ip addresses
server.socket_port = 8080
# Sets the number of threads the server uses
server.thread_pool = 10
server.environment = "development"
# Simple code profiling
server.profile_on = False
server.profile_dir = "profile"
# Set to True if you are deploying your App behind a proxy
# e.g. Apache using mod_proxy
#tools.proxy.on = True
# If your proxy does not add the X-Forwarded-Host header, set
# the following to the *public* host url.
#tools.proxy.base = 'http://mydomain.com'
# logging
log.access_file = "/var/log/openerp-web/access.log"
log.error_file = "/var/log/openerp-web/error.log"
# OpenERP Server information
[openerp]
host = 'localhost'
port = '8070'
protocol = 'socket'
# Web client settings
[openerp-web]
# filter dblists based on url pattern?
# NONE: No Filter
# EXACT: Exact Hostname
# UNDERSCORE: Hostname_
# BOTH: Exact Hostname or Hostname_
dblist.filter = 'NONE'
# whether to show Databases button on Login screen or not
dbbutton.visible = True
# will be applied on company logo
company.url = ''
# options to limit data rows in M2M/O2M lists, will be overriden
# with limit="5", min_rows="5" attributes in the tree view definitions
child.listgrid.limit = 5
child.listgrid.min_rows = 5