raise ValueError("Host values of '' or None are not allowed. Use '0.0.0.0' instead to listen on all active interfaces (INADDR_ANY).")
value
self._socket_host = value
socket_host = property(_get_socket_host, _set_socket_host, doc = 'The hostname or IP address on which to listen for connections.\n \n Host values may be any IPv4 or IPv6 address, or any valid hostname.\n The string \'localhost\' is a synonym for \'127.0.0.1\' (or \'::1\', if\n your hosts file prefers IPv6). The string \'0.0.0.0\' is a special\n IPv4 entry meaning "any active interface" (INADDR_ANY), and \'::\'\n is the similar IN6ADDR_ANY for IPv6. The empty string or None are\n not allowed.')
socket_file = ''
socket_queue_size = 5
socket_timeout = 10
shutdown_timeout = 5
protocol_version = 'HTTP/1.1'
reverse_dns = False
thread_pool = 10
thread_pool_max = -1
max_request_header_size = 512000
max_request_body_size = 104857600
instance = None
ssl_certificate = None
ssl_private_key = None
nodelay = True
def __init__(self):
ServerAdapter.__init__(self, cherrypy.engine)
def quickstart(self, server = None):
warnings.warn('quickstart does nothing now and will be removed in 3.2. Call cherrypy.engine.start() instead.', DeprecationWarning)