2411dffa2c
This refactors the configs a bit to now use camel case everywhere. This change should help to clean up the config interface and make it better understandable. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
42 lines
987 B
JavaScript
42 lines
987 B
JavaScript
'use strict'
|
|
|
|
module.exports = {
|
|
urlpath: undefined,
|
|
urladdport: undefined,
|
|
alloworigin: undefined,
|
|
usessl: undefined,
|
|
protocolusessl: undefined,
|
|
usecdn: undefined,
|
|
allowanonymous: undefined,
|
|
allowanonymousedits: undefined,
|
|
allowfreeurl: undefined,
|
|
defaultpermission: undefined,
|
|
dburl: undefined,
|
|
// ssl path
|
|
sslkeypath: undefined,
|
|
sslcertpath: undefined,
|
|
sslcapath: undefined,
|
|
dhparampath: undefined,
|
|
// other path
|
|
tmppath: undefined,
|
|
defaultnotepath: undefined,
|
|
docspath: undefined,
|
|
indexpath: undefined,
|
|
hackmdpath: undefined,
|
|
errorpath: undefined,
|
|
prettypath: undefined,
|
|
slidepath: undefined,
|
|
// session
|
|
sessionname: undefined,
|
|
sessionsecret: undefined,
|
|
sessionlife: undefined,
|
|
staticcachetime: undefined,
|
|
// socket.io
|
|
heartbeatinterval: undefined,
|
|
heartbeattimeout: undefined,
|
|
// document
|
|
documentmaxlength: undefined,
|
|
imageuploadtype: undefined,
|
|
allowemailregister: undefined,
|
|
allowpdfexport: undefined
|
|
}
|