API Overview
JSONConfig = new path.to.JSONConfig()
.setNullSupport( true )
.setUseTimeServer( true )
.setAdminPassword( 'myPass' )
.addCFMapping( '/foo', '/bar' )
.write();JSONConfig = new path.to.JSONConfig()
.read( 'test.json' );lucee4ServerConfig = new path.to.Lucee4ServerConfig()
.setCFHomePath( expandPath( '/path/to/lucee-server' ) )
.read();
writeDump( lucee4ServerConfig.getMemento() );JSONConfig = new path.to.JSONConfig()
.read( expandPath( '.CFConfig.json' ) );
new path.to.Lucee4WebConfig()
.setMemento( JSONConfig.getMemento() )
.write( expandPath( 'WEB-INF/lucee/' ) );Notes
Last updated
Was this helpful?