aboutsummaryrefslogtreecommitdiff
path: root/finance/openerp-web/files/openerp-web.conf
diff options
context:
space:
mode:
Diffstat (limited to 'finance/openerp-web/files/openerp-web.conf')
-rw-r--r--finance/openerp-web/files/openerp-web.conf59
1 files changed, 59 insertions, 0 deletions
diff --git a/finance/openerp-web/files/openerp-web.conf b/finance/openerp-web/files/openerp-web.conf
new file mode 100644
index 000000000000..aebbdb6e6c79
--- /dev/null
+++ b/finance/openerp-web/files/openerp-web.conf
@@ -0,0 +1,59 @@
+# 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