This section is for configuring the network addresses and ports where Apache will listen, and some other access limit, timeout, and queue options.
Listen on addresses and ports - This option defines the addresses and ports where Apache will listen for requests. The default is to listen to port 80 on all addresses, and this is often all that is needed. Port 80 is the standard port for all web traffic, and should generally be used for all web traffic. It is also possible to configure multiple Apaches to run on the same machine with different global configurations on different ports or addresses. Also, because ports below 1024 are privileged ports, regular users running Apache without administrator access will have to run it on a non-standard port. 8080 is another common port for web traffic. A good overview of these options can be found at Setting which addresses and ports Apache uses. These options correlate to the Listen and Port directives.
Multiple requests per connection - When KeepAlive is enabled, this sets the maximum number of requests to be handled per client connection. This option correlates to the MaxKeepAliveRequests directive.
Keep-alive timeout - The number of seconds Apache will wait for a subsequent request before closing a connection. This option edits the KeepAliveTimeout directive.
Listen queue length - The maximum length of the queue of pending connections. Generally no tuning is needed or desired, however on some systems it is desirable to increase this when under a TCP SYN flood attack. Correlates to the ListenBacklog directive.
Addresses for name virtual servers - This option is used to configure the address on which Apache will listen for requests to virtual servers. Virtual servers are name based servers, wherein several different host or domain names can answer on the same IP address. For example, I run two test servers on my local network. One is named liberty while the other is named swelltest.com. Both run on the same server, but they answer on different named addresses and provide different root directories. So a visit to each will bring up different web pages. Note that your DNS will also have to have entries for each virtual server you run that resolves to the IP of your server. It is also possible to specify a different port for a given name virtual server to listen on. This option affects the NameVirtualHost directive. Another good source of information on virtual servers in Apache is the Apache Virtual Host documentation.
TCP send buffer size - Sets the size of the send buffer for TCP packets. It is usually safe to leave this at the default for your operating system. This option edits the SendBufferSize directive.
Request timeout - Defines the maximum number of seconds that Apache will wait for a request after a connection has been established. Correlates to the TimeOut directive.