bsw@0: // ========================================================================== bsw@0: // configuration of lfapi bsw@0: // -------------------------------------------------------------------------- bsw@0: // Please read this file carefully and adjust settings for your system bsw@0: // -------------------------------------------------------------------------- bsw@0: bsw@0: // the interface address the service should bind to (0.0.0.0 for ALL) bsw@0: exports.bind_address = '0.0.0.0'; bsw@0: bsw@0: // the port number the service should bind to (usually 80) bsw@0: exports.bind_port = 25520; bsw@0: bsw@0: // access level for not logged in users (may be 'full', 'pseudonym', bsw@0: // 'anonymous', 'none' or 'devel') bsw@0: // never set access level to 'devel' on a productive installation! bsw@0: exports.public_access_level = 'full'; bsw@0: bsw@0: // connection string to access the LiquidFeedback Core database bsw@40: exports.connectionString = 'pg://localhost/liquid_feedback'; bsw@0: bsw@0: // public base url (including trailing slash) bsw@33: exports.public_url_path = 'http://apitest.liquidfeedback.org:25520/'; bsw@0: bsw@0: // mail server, email sender and subject settings bsw@0: exports.mail = { bsw@33: from: 'LiquidFeedback Maintainers ', bsw@33: subject_prefix: '[lfapi alpha] ' bsw@0: }; bsw@0: bsw@0: exports.settings = { bsw@0: result_row_limit: { max: 1001, default: 101 } bsw@0: }