-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
32 lines (25 loc) · 1.23 KB
/
config.js
File metadata and controls
32 lines (25 loc) · 1.23 KB
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
// ==========================================================================
// configuration of lfapi
// --------------------------------------------------------------------------
// Please read this file carefully and adjust settings for your system
// --------------------------------------------------------------------------
// the interface address the service should bind to (0.0.0.0 for ALL)
exports.bind_address = '0.0.0.0';
// the port number the service should bind to (usually 80)
exports.bind_port = 25520;
// access level for not logged in users (may be 'full', 'pseudonym',
// 'anonymous', 'none' or 'devel')
// never set access level to 'devel' on a productive installation!
exports.public_access_level = 'full';
// connection string to access the LiquidFeedback Core database
exports.connectionString = 'pg://localhost/liquid_feedback';
// public base url (including trailing slash)
exports.public_url_path = 'http://apitest.liquidfeedback.org:25520/';
// mail server, email sender and subject settings
exports.mail = {
from: 'LiquidFeedback Maintainers <lqfb-maintainers@public-software-group.org>',
subject_prefix: '[lfapi alpha] '
};
exports.settings = {
result_row_limit: { max: 1001, default: 101 }
}