by Ryan Oeltjenbruns
Who knows which port servers respond to by default? Extra credit for HTTP requests vs HTTPS!
Answer below.
Web requests are made to port 80 (non-ssl) and 443 (ssl)
Partial credit for ports 3000, 3001, 5000, or 8000 in dev environments.
The phone book of the internet.
Each time you make a request, your browser first reaches out to a DNS server to ask what a domain's IP address is.
Domain.com -> 123.45.67.89
What are the two most common IP Address versions and which one is "domain.com's"?
123.45.67.89 is an example of an IPv4 Address
Now that the browser knows where to find the site, it sends out a request to the IP with all of the domain information in the headers of the request.
Now we're in "webstack" territory.
VVV
Also, typically in webstack acronyms, the OS is specified. Go deeper for some examples.
Once the server renders the request, the browser parses the response and renders appropriately.
because I didn't know this was today.