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@0: exports.connectionString = 'pg://localhost/liquid_feedback'; bsw@0: bsw@0: // public base url (including trailing slash) bsw@0: exports.public_url_path = 'http://lf.example.org/api/'; bsw@0: bsw@0: // mail server, email sender and subject settings bsw@0: exports.mail = { bsw@0: smtp_host: 'localhost', bsw@0: smtp_port: '25', bsw@0: smtp_ssl: false, bsw@0: smtp_domain: 'localhost', bsw@0: //smtp_authentication: 'login', bsw@0: //smtp_username: 'username', bsw@0: //smtp_password: 'password', bsw@0: from: 'Sender name ', bsw@0: subject_prefix: '[email subject prefix] ' bsw@0: }; bsw@0: bsw@0: exports.settings = { bsw@0: result_row_limit: { max: 1001, default: 101 } bsw@0: }