41 lines
		
	
	
		
			937 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			41 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
 | 
						|
}
 |