Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(777)

Side by Side Diff: etc/trytond.conf

Issue 181142: Add JSON-RPC (Closed)
Patch Set: Add doc Created 14 years, 2 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « doc/protocols.rst ('k') | setup.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #This file is part of Tryton. The COPYRIGHT file at the top level of 1 #This file is part of Tryton. The COPYRIGHT file at the top level of
2 #this repository contains the full copyright notices and license terms. 2 #this repository contains the full copyright notices and license terms.
3 [options] 3 [options]
4 4
5 # Configure the IP address for trytond 5 # Configure the IP address for trytond
6 # If empty, the server will listen on all available interfaces 6 # If empty, the server will listen on all available interfaces
7 #interface = 7 #interface =
8 8
9 # Activate the netrpc protocol 9 # Activate the netrpc protocol
10 #netrpc = True 10 #netrpc = True
11 # Configure the port for the netrpc protocol to listen 11 # Configure the port for the netrpc protocol to listen
12 #netport = 8070 12 #netport = 8070
13 13
14 # Activate the xml-rpc protocol 14 # Activate the xml-rpc protocol
15 #xmlrpc = False 15 #xmlrpc = False
16 # Configure the port for the xml-rpc protocol to listen 16 # Configure the port for the xml-rpc protocol to listen
17 #xmlport = 8069 17 #xmlport = 8069
18 18
19 # Activate the json-rpc protocol
20 #jsonrpc = False
21 # Configure the port for the json-rpc protocol to listen
22 #jsonport = 8000
23 # Configure the path of json-rpc data
24 #jsondata_path = /var/www/localhost/tryton
25
19 # Activate the webdav protocol 26 # Activate the webdav protocol
20 #webdav = False 27 #webdav = False
21 # Configure the port for the webdav protocol to listen 28 # Configure the port for the webdav protocol to listen
22 #webdavport = 8080 29 #webdavport = 8080
23 30
24 # Configure the database type 31 # Configure the database type
25 # allowed values are postgresql, sqlite 32 # allowed values are postgresql, sqlite
26 db_type = postgresql 33 db_type = postgresql
27 34
28 # Configure the database connection 35 # Configure the database connection
(...skipping 13 matching lines...) Expand all
42 # Configure the Tryton server password 49 # Configure the Tryton server password
43 #admin_passwd = admin 50 #admin_passwd = admin
44 51
45 # Configure the path of the files for the pid and the logs 52 # Configure the path of the files for the pid and the logs
46 #pidfile = False 53 #pidfile = False
47 #logfile = False 54 #logfile = False
48 55
49 # Enable secure connection with SSL 56 # Enable secure connection with SSL
50 #secure_netrpc = False 57 #secure_netrpc = False
51 #secure_xmlrpc = False 58 #secure_xmlrpc = False
59 #secure_jsonrpc = False
52 #secure_webdav = False 60 #secure_webdav = False
53 #privatekey = server.pem 61 #privatekey = server.pem
54 #certificate = server.pem 62 #certificate = server.pem
55 63
56 # Configure the SMTP connection 64 # Configure the SMTP connection
57 #smtp_server = localhost 65 #smtp_server = localhost
58 #smtp_port = 25 66 #smtp_port = 25
59 #smtp_ssl = False 67 #smtp_ssl = False
60 #smtp_tls = False 68 #smtp_tls = False
61 #smtp_password = False 69 #smtp_password = False
(...skipping 10 matching lines...) Expand all
72 80
73 # Configure the session timeout (inactivity of the client in sec) 81 # Configure the session timeout (inactivity of the client in sec)
74 #session_timeout = 600 82 #session_timeout = 600
75 83
76 # Enable psyco module 84 # Enable psyco module
77 # Need to have psyco installed http://psyco.sourceforge.net/ 85 # Need to have psyco installed http://psyco.sourceforge.net/
78 #psyco = False 86 #psyco = False
79 87
80 # Enable auto-reload of modules if changed 88 # Enable auto-reload of modules if changed
81 #auto_reload = True 89 #auto_reload = True
OLDNEW
« no previous file with comments | « doc/protocols.rst ('k') | setup.py » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b