Property definitions

nitcorn $ ServerConfig :: defaultinit
# Server instance configuration
class ServerConfig
	# `VirtualHost`s served by this server
	var virtual_hosts = new VirtualHosts(self)

	# Default `VirtualHost` to respond to requests not handled by any of the `virtual_hosts`
	var default_virtual_host: nullable VirtualHost = null is writable
end
lib/nitcorn/server_config.nit:22,1--29,3