This is simply a dictionary of terms and a glossary of acronyms.
This is the IP address, in this situation, the public IP address, from which you are connecting to this site's HTTP server.
IP addresses are 32-bit binary numbers expressed in dotted decimal notation. "01111111000000000000000000000001" is the binary representation of the IP address of your computer's/device's (etc.) loopback interface. That number in dotted decimal notation is "127.0.0.1".
This is the SSI HTTP environment variable REMOTE_ADDR.
This is the port from which you are connecting to this site's HTTP server.
Ports are 16-bit binary numbers expressed in decimal as unsigned integers. This number will likely be between 1024 and 65535 or between 32768 and 65535 depending on your operating system.
This is the SSI HTTP environment variable REMOTE_PORT.
This is the identifier for your browser and its version. It also may include information about the platform (computer/device, etc.) it's running on such as the operating system and version as well as the CPU's architecture family.
This information can be used to tailor the browsing experience for your computer/device (etc.) as some site features or formats may differ based on platform.
When you navigate to "toctep.com" with your browser, a request, like the one seen below, is sent to Тостер.com.
GET /index.shtml HTTP/1.1 Host: toctep.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-US,en;q=0.5 Accept-Encoding: gzip, deflate Connection: keep-alive Upgrade-Insecure-Requests: 1
"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0" indicates a Mozilla compatible browser, in this instance, Firefox version 68 using the Gecko browser engine, on Windows 10 64-bit with a 64-bit processor.
This is the SSI HTTP environment variable HTTP_USER_AGENT.
These are the content types that your browser accepts and optionally the preference/weighting, as a quality value, of those content types. Quality values are expressed as a number which is 0, 1, or between the two up to the thousandth.
This information can be used by the HTTP server to negotiate with the browser which representation of content should be served.
When you navigate to "toctep.com" with your browser, a request, like the one seen below, is sent to Тостер.com.
GET /index.shtml HTTP/1.1 Host: toctep.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-US,en;q=0.5 Accept-Encoding: gzip, deflate Connection: keep-alive Upgrade-Insecure-Requests: 1
"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" indicates a preference to show the HTML, XHTML, and XML content types over all others.
This is the SSI HTTP environment variable HTTP_ACCEPT.
These are the compression types your browser supports for when/if the HTTP server sends content compressed.
This information can be used by the HTTP server to negotiate with the browser which representation of content should be served.
When you navigate to "toctep.com" with your browser, a request, like the one seen below, is sent to Тостер.com.
GET /index.shtml HTTP/1.1 Host: toctep.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-US,en;q=0.5 Accept-Encoding: gzip, deflate Connection: keep-alive Upgrade-Insecure-Requests: 1
"gzip, deflate" indicates support for the Gzip and DEFLATE compression algorithms.
This is the SSI HTTP environment variable HTTP_ACCEPT_ENCODING.
These are the languages that your browser accepts and optionally the preference/weighting, as a quality value, of those languages. Quality values are expressed as a number which is 0, 1, or between the two up to the thousandth.
This information can be used by the HTTP server to negotiate with the browser which representation of content should be served.
When you navigate to "toctep.com" with your browser, a request, like the one seen below, is sent to Тостер.com.
GET /index.shtml HTTP/1.1 Host: toctep.com User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-US,en;q=0.5 Accept-Encoding: gzip, deflate Connection: keep-alive Upgrade-Insecure-Requests: 1
"en-US,en;q=0.5" indicates preference for English, as written in the United States.
This is the SSI HTTP environment variable HTTP_ACCEPT_LANGUAGE.
This is the current date and time (as GMT) on the server at the time of the connection to the HTTP server.
This is the SSI HTTP environment variable DATE_GMT, formatted using the config directive using the timefmt parameter.
This is the current date and time (as GMT) on the server, adjusted for your computer's configured time zone, at the time of the connection to the HTTP server.
This is a string constructed from parsing the SSI HTTP environment variable DATE_GMT, using various JavaScript functions.