blob: 1e6ca334b097bf24d92e2759bee8562da3b821cb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Example configuration file for OpenERP-server
#
# This is an example configuration file, just copy it
# to openerp-server.conf and edit it to suit your needs.
#
# Patch submitted by (c) Franck Porcher, Ph.D, to smooth some default values
[options]
# Basic daemon configuration options ##################
root_path = %%PYTHON_SITELIBDIR%%/openerp-server/
addons_path = %%PYTHON_SITELIBDIR%%/openerp-server/addons
# netinterface =
# interface =
port = 8069
netport = 8070
debug_mode = False
stop_after_init = False
soap = False
xmlrpc = True
netrpc = True
secure = False
cache_timeout = 100000
pidfile = /var/run/openerp/openerp-server.pid
reportgz = False
admin_passwd = admin
login_message = False
price_accuracy = 2
csv_internal_sep = ,
translate_modules = ['all']
# Logging options #####################################
syslog = True
log_level = info
logfile = /var/log/openerp/openerp-server.log
assert_exit_level = warn
# Database options ####################################
db_name = openerp
db_user = openerp
db_password = openerp
db_host = localhost
db_maxconn = 64
pg_path = /usr/local/bin
list_db = True
# import_partial =
# SMTP options ########################################
smtp_server = localhost
smtp_port = 25
smtp_user = False
smtp_password = False
email_from = False
# Use demo files? #####################################
# without_demo = True
# demo = {}
|