mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
9498ee6bfe
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
40 lines
937 B
JavaScript
40 lines
937 B
JavaScript
'use strict'
|
|
|
|
module.exports = {
|
|
urlpath: undefined,
|
|
urladdport: undefined,
|
|
alloworigin: undefined,
|
|
usessl: undefined,
|
|
protocolusessl: 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
|
|
}
|