본문 바로가기

Http, 정적 웹 서버, 동적 웹 서버 정리

by ehaakdl 2022. 8. 27.

하이퍼 텍스트

- 참조를 통해 다른 문서로 접근할수 있는 문서를 애기한다.

https://ko.wikipedia.org/wiki/%ED%95%98%EC%9D%B4%ED%8D%BC%ED%85%8D%EC%8A%A4%ED%8A%B8

 

하이퍼텍스트 - 위키백과, 우리 모두의 백과사전

위키백과, 우리 모두의 백과사전. 하이퍼텍스트(Hypertext, 문화어: 초본문, 하이퍼본문)는 참조(하이퍼링크)를 통해 독자가 한 문서에서 다른 문서로 즉시 접근할 수 있는 텍스트이다.[1] 주로 컴퓨

ko.wikipedia.org

 

 

클라이언트-서버

클라이언트-서버

https://en.wikipedia.org/wiki/Client%E2%80%93server_model

 

Client–server model - Wikipedia

From Wikipedia, the free encyclopedia Jump to navigation Jump to search Distributed application structure in computing A computer network diagram of clients communicating with a server via the Internet Client-server model is a distributed application struc

en.wikipedia.org

 

Stateless(무상태)

- 수신자가 이전 요청에 대한 상태를 저장하면 안된다.

- 무상태 프로토콜: Http, IP

- 상태 저장 프로토콜: Tcp

https://en.wikipedia.org/wiki/Stateless_protocol

 

Stateless protocol - Wikipedia

From Wikipedia, the free encyclopedia Jump to navigation Jump to search Communications protocol in which no information is retained by either sender or receiver A stateless protocol is a communication protocol in which the receiver must not retain session

en.wikipedia.org

 

Http 뭔가?

- HTML과 같은 하이퍼미디어 문서를 전송하기위한 프로토콜이다.

- Http는 요청을 위해 서버와 연결 후 응답을 받을떄까지 대기하는 전통적인 클라이언트-서버 구조다.

- Stateless(무상태) 프로토콜이다.

- 신뢰성이 중요한 데이터 이기 때문에 Tcp로 구현됨

 

정적 웹 서버

- Http 기반으로 동작

- 정적 리소스 제공

 

https://developer.mozilla.org/ko/docs/Learn/Common_questions/What_is_a_web_server

 

웹 서버란 무엇일까? - Web 개발 학습하기 | MDN

여기서 우리는 웹 서버가 무엇인지, 어떻게 동작하는지, 왜 중요한지를 알아볼 것입니다.

developer.mozilla.org

 

동적 웹 서버

- Http 기반

- Html 에 채워질 데이터를 서버에서 제공하여 Html을 렌더링 후 전달 함

 

HTTP 에 모든 것이 담김

https://developer.mozilla.org/ko/docs/Web/HTTP/Overview

 

HTTP 개요 - HTTP | MDN

HTTP는 HTML 문서와 같은 리소스들을 가져올 수 있도록 해주는 프로토콜입니다. HTTP는 웹에서 이루어지는 모든 데이터 교환의 기초이며, 클라이언트-서버 프로토콜이기도 합니다. 클라이언트-서버

developer.mozilla.org

 

'' 카테고리의 다른 글

SSR, CSR  (0) 2022.08.27
WAS 스레드 방식 비교  (0) 2022.08.27
서블릿은 무엇인가?  (0) 2022.07.12
Rest Api 설계  (0) 2022.07.06
csrf 방어  (0) 2022.06.18