bsw/jbe@6: config.absolute_base_url = "http://10.8.33.34/lf/" bsw/jbe@6: bsw/jbe@0: execute.config("default") bsw/jbe@0: bsw/jbe@4: config.formatting_engine_executeables = { bsw/jbe@4: rocketwiki= "/opt/rocketwiki/rocketwiki-lqfb", bsw/jbe@4: compat = "/opt/rocketwiki/rocketwiki-lqfb-compat" bsw/jbe@4: } bsw/jbe@6: bsw/jbe@6: config.mail_from = "LiquidFeedback" bsw/jbe@6: config.mail_reply_to = "liquid-support@localhost" bsw@10: bsw@51: config.issue_discussion_url_func = function(issue) return "http://example.com/issue_" .. tostring(issue.id) end bsw@51: bsw/jbe@52: config.auth_openid_enabled = false bsw@51: config.auth_openid_https_as_default = true bsw@51: bsw/jbe@52: config.api_enabled = true bsw/jbe@52: bsw@51: config.auth_openid_identifier_check_func = function(uri) bsw@51: local uri = uri:lower() bsw@51: if uri:find("^https://") then bsw@51: uri = uri:match("^https://(.*)") bsw@51: end bsw@51: if uri:find("^[0-9A-Za-z_-]+%.example%.com/?$") then bsw@51: return true bsw@51: else bsw@51: return false bsw@51: end bsw@69: end bsw@69: bsw@69: config.motd_public = "==Public motd==" bsw@69: bsw@69: config.motd_intern = "==Internal motd==" bsw@69: poelzi@110: config.public_access = "anonymous" poelzi@110: poelzi@110: -- you can put some js code to the bottom on the page poelzi@110: -- here it opens the trace window poelzi@110: poelzi@110: --slot.put_into( poelzi@110: -- "custom_script", poelzi@110: -- "document.getElementById('trace_show').onclick();" poelzi@110: --)