Web Server

Web Server

Creator
Creator
Seonglae ChoSeonglae Cho
Created
Created
2020 Jan 10 13:43
Editor
Edited
Edited
2025 Jun 4 9:45
Refs

Web server manages how Web clients access host Services

An abstract concept created by Web Standards
Web Server Notion
 
 
Web Server Usages
 
 
Web Servers
 
 
 

Web Server Structure

web server 및 어플리케이션의 이해와 tomcat 구조
상단 배너(광고) 클릭 부탁드립니다.개발자 들이여~ 꾸벅--- 위의 그림과 같이 항상 같은 구조를 표준 처럼 유지 되어야 한다. *.html, *.jsp, 등. - 웹 어플리케이션에서 클라이언트 브라우저로 전송이 되는 HTML 과 JSP 페이지와 다른 파일들 (예를 들면 자바스크립트, 스타일시트, 이미지 같은). 대규모 어플리케이션에서 이 파일들을 서브디렉토리 체계로 나누어 놓을 수 있습니다.
web server 및 어플리케이션의 이해와 tomcat 구조
웹서비스의 구성 - Web Server , CGI, WAS , WSGI의 특징 및 차이점
웹서비스의 구조 정적 처리 : 클라이언트 -> (Request) -> 웹서버 기본적인 동적 처리의 경우 : 클라이언트 -> (Request) -> 웹서버 -> (Request) -> WAS -> 외부 프로그램 실행(WAS에서 동작) CGI를 사용하는 경우 : 클라이언트 -> Request -> 웹서버 -> CGI -> 외부 프로그램 실행(웹서버에서 동작) WSGI를 사용하는 경우 : 클라이언트 -> Request -> 웹서버 -> Request -> WSGI (미들웨어) -> Requset -> WAS -> 외부 프로그램 웹 서버 소프트웨어 + 하드웨어로 이루어짐.
웹서비스의 구성 - Web Server , CGI, WAS , WSGI의 특징 및 차이점
Simple code implementation
ASGI Fundamentals: Asynchronous Web Apps in Python
Building your future web app. Stop copy-pasting snippets to piece together a FastAPI app you don't really understand. Instead, buckle down and take the time to learn the fundamental building blocks that async web app frameworks in Python are built on top of. That way, you won't be stuck when there's no tutorial to copy from. ― mCoding with James Murphy (https://mcoding.io) Source code: https://github.com/mCodingLLC/VideosSampleCode ASGI Spec: https://asgi.readthedocs.io/ SUPPORT ME ⭐ --------------------------------------------------- Sign up on Patreon to get your donor role and early access to videos! https://patreon.com/mCoding Feeling generous but don't have a Patreon? Donate via PayPal! (No sign up needed.) https://www.paypal.com/donate/?hosted_button_id=VJY5SLZ8BJHEE Want to donate crypto? Check out the rest of my supported donations on my website! https://mcoding.io/donate Top patrons and donors: Jameson, Laura M, Dragos C, Vahnekie, Neel R, Matt R, Johan A, Casey G, Mark M, Mutual Information, Pi BE ACTIVE IN MY COMMUNITY 😄 --------------------------------------------------- Discord: https://discord.gg/Ye9yJtZQuN Github: https://github.com/mCodingLLC/ Reddit: https://www.reddit.com/r/mCoding/ Facebook: https://www.facebook.com/james.mcoding CHAPTERS --------------------------------------------------- 0:00 Intro 1:14 The ASGI Specification 3:04 What an ASGI app looks like 4:37 Our first ASGI app 7:41 The lifespan connection 9:10 HTTP connections 12:05 Routing like FastAPI 13:27 The Response object 14:42 Starting to see the big picture
ASGI Fundamentals: Asynchronous Web Apps in Python
 
 

Recommendations