Network Servers and Services Lesson 002: Web Servers

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/27

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 9:36 PM on 8/26/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

28 Terms

1
New cards

Web Servers

Any server that provides access to a website.

2
New cards

What does HTTP stand for?

Hypertext Transfer Protocol.

3
New cards

What does HTTPS stand for?

Hypertext Transfer Protocol Secure.

4
New cards

What are the two methods for accessing web servers?

HTTP and HTTPS.

5
New cards

What port/s does HTTP utilize?

Port 80.

6
New cards

What port/s does HTTPS utilize?

Port 443

7
New cards

What does a web server using HTTPS have?

A digital certificate installed.

8
New cards

What does HTTPS utilize when establishing and utilizing a connection?

A secure and encrypted tunnel between the client web browser and the web server.

9
New cards

What does IIS stand for?

Internet Information Services.

10
New cards

Internet Information Services

Extensible web server software created by Microsoft, through HTTP, HTTP/2, AND HTTPS.

11
New cards

What web server software is used by Microsoft?

IIS.

12
New cards

Apache

Most popular, common, and open source way to run a web server and is what is mainly used today.

13
New cards

NGINX

Reverse proxy, load balancer, mail proxy, and HTTP cache.

14
New cards

What does NGINX have that IIS and Apache doesn’t?

Better performance.

15
New cards

What is used to create and display web pages when using HTTP?

HTML, CSS, and JavaScript.

16
New cards

How does a web server display a website to a client?

A get message is automatically sent to the web server though the utilization of DNS > the code is sent from the server to the browser > the browser builds the website based off of the code provided to the client.

17
New cards

What does FQDN stand for?

Fully Qualified Domain Name.

18
New cards

What is used when going to a web server to access information?

A FQDN.

19
New cards

Are FQDNs case sensitive?

No.

20
New cards

What is considered a FQDN?

www.diontraining.com.

21
New cards

What does URL stand for?

Uniform Resource Locator.

22
New cards

Uniform Resource Locator

Combines the FQDN with a protocol at the beginning.

23
New cards

What is the “https://” in a URL address?

The protocol.

24
New cards

What is the “www” in a URL address?

The server being specified.

25
New cards

What is the “diontraining” in a URL address?

Domain name.

26
New cards

What is the “.com” in a URL address?

The top-level domain.

27
New cards

What does it mean if a web server has a digital certificate installed from a trusted certificate authority?

When a web browser connects to a server, it will be able to see a digital certificate to create a random code.

28
New cards

What happens when a client device requests a website from a web server with an installed digital certificate?

The client system creates a random code > the code is encrypted and sent over using the web server’s digital certificate > the web server receives the encrypted code and decrypts it > the web server utilizes the received client’s code to create an encrypted tunnel between the client and the web server > information is transferred securely.