Improving init call in README.Debian, thanks to David Goodenough <david.goodenough...
[odoo/odoo.git] / debian / config / openerp-server.conf
1 # /etc/openerp-server.conf(5) - configuration file for openerp-server(1)
2
3 [options]
4 # Enable the debugging mode (default False).
5 verbose = False
6
7 # The file where the server pid will be stored (default False).
8 pidfile = /var/run/openerp.pid
9
10 # The file where the server log will be stored (default False).
11 logfile = /var/log/openerp.log
12
13 # The IP address on which the server will bind.
14 # If empty, it will bind on all interfaces (default empty).
15 interface = localhost
16
17 # The TCP port on which the server will listen (default 8069).
18 port = 8069
19
20 # Enable debug mode (default False).
21 debug_mode = False
22
23 # Launch server over https instead of http (default False).
24 secure = False
25
26 # Specify the SMTP server for sending email (default localhost).
27 smtp_server = localhost
28
29 # Specify the SMTP user for sending email (default False).
30 smtp_user = False
31
32 # Specify the SMTP password for sending email (default False).
33 smtp_password = False
34
35 # Specify the database name.
36 db_name = openerp
37
38 # Specify the database user name (default None).
39 db_user = openerp
40
41 # Specify the database password for db_user (default None).
42 db_password =
43
44 # Specify the database host (default localhost).
45 db_host =
46
47 # Specify the database port (default None).
48 db_port = 5432