Both the HTTP Port and HTTPS Port (SSL) can be overridden. The HTTP Server will only listen on the HTTPS Port when an SSL Certificate is configured for the device.

The Max Timeout value specifies the maximum amount of time to wait for a request from a client. The Max Bytes value specifies the maximum number of bytes allowed in a client request. Both of these value are used to help prevent Denial of Service (DoS) attacks against the HTTP Server.

The HTTP Log is a scrolling log in that only the last Max Log Entries lines are cached and viewable.

Log Format Directives
%a remote IP address (could be a proxy)
%b bytes sent excluding headers
%B bytes sent excluding headers (0 = '-')
%h remote host (same as '%a')
%{h}i header contents from request (h = header string)
%m request method
%p ephemeral local port value used for request
%q query string (prepend with '?' or empty '-')
%t timestamp HH:MM:SS (same as Apache '%(%H:%M:%S)t' or '%(%T)t')
%u remote user (could be bogus for 401 status)
%U URL path info
%r first line of request (same as '%m %U%q <version>')
%s return status

The max length for each directive is 64 bytes. The exception is '%r' where each element is limited to 64 bytes (i.e. method, URL path info, and query string).

The default log format string is:

%h %t "%r" %s %B "%{Referer}i" "%{User-Agent}i"