SlideShare a Scribd company logo
nginx 입문 공부자료
•
nginx 입문 공부자료
•
•
4
•
5
•
6
•
7
•
8
nginx 입문 공부자료
•
•
•
•
10
•
11
•
•
12
•
13
•
nginx 입문 공부자료
•
•
15
•
•
16
•
17
•
•
19
nginx 입문 공부자료
•
21
nginx 입문 공부자료
•
23
•
24
•
•
25
server {
listen *:82;
server_name "helloworld.com";
location / {
return 200 "helloworld";
}
location /a/ {
return 200 "helloworld-a";
}
location /a {
return 200 "helloworld-a";
}
location /b/ {
return 200 "helloworld-b";
}
location /b {
return 200 "helloworld-b";
}
}
•
•
26
•
•
27
•
•
28
server {
listen *:82;
server_name "helloworld.com";
location = / {
return 200 "helloworld";
}
location = /a/ {
return 200 "helloworld-a";
}
location = /a {
return 200 "helloworld-a";
}
location = /b/ {
return 200 "helloworld-b";
}
location = /b {
return 200 "helloworld-b";
}
}
•
29
# reference: http://nginx.org/en/docs/http/ngx_http_core_module.html#location
server {
listen *:82;
server_name "helloworld.com";
# case1: 정규식(대소문자 구분)
# curl helloworld.com:82/abc.gif
# curl helloworld.com:82/abc.Gif -> 호출안됨
location ~ .(gif|jpg) {
return 200 "case1 image found";
}
# case2: 정규식(대소문자 구분 x)
# curl helloworld.com:82/abc.gif
# curl helloworld.com:82/abc.Gif
location ~* .(gif|jpg) {
return 200 "case2 image found";
}
}
nginx 입문 공부자료
•
31
server {
listen *:82;
location = / {
return 200 "helloworld";
}
# case1: 정규식(대소문자 구분 x)
# 준비 mkdir -p /tmp/images
# touch /tmp/images/a.jp
# curl helloworld.com:82/images/a.jpg
# curl helloworld.com:82/a.jpg
location /images {
root /tmp;
}
}
•
32
server {
listen *:82;
location = / {
return 200 "helloworld";
}
# case1: 정규식(대소문자 구분 x)
# 준비 mkdir -p /tmp/images
# touch /tmp/images/a.jp
# curl helloworld.com:82/images/a.jpg
# curl helloworld.com:82/a.jpg
location /images {
root /tmp;
try_files $uri =404;
}
}
nginx 입문 공부자료
•
•
•
•
•
•
•
•
•
•
34

More Related Content

PDF
GCP CloudRun Overview
PDF
IAM 정책을 잘 알아야 AWS 보안도 쉬워진다. 이것은 꼭 알고 가자! - 신은수 솔루션즈 아키텍트, AWS :: AWS Summit S...
PDF
[AWSマイスターシリーズ] AWS SDK for Java / .NET
PDF
AWS 6월 웨비나 | Amazon VPC Deep Dive (김상필 솔루션즈아키텍트)
PDF
Quick and Solid - Baremetal on OpenStack | Rico Lin
PPTX
Kubernetes Security
PDF
Getting more into GCP.pdf
PDF
Kotlin Coroutines and Android sitting in a tree
GCP CloudRun Overview
IAM 정책을 잘 알아야 AWS 보안도 쉬워진다. 이것은 꼭 알고 가자! - 신은수 솔루션즈 아키텍트, AWS :: AWS Summit S...
[AWSマイスターシリーズ] AWS SDK for Java / .NET
AWS 6월 웨비나 | Amazon VPC Deep Dive (김상필 솔루션즈아키텍트)
Quick and Solid - Baremetal on OpenStack | Rico Lin
Kubernetes Security
Getting more into GCP.pdf
Kotlin Coroutines and Android sitting in a tree

What's hot (20)

PDF
AWS IAM과 친해지기 – 조이정, AWS 솔루션즈 아키텍트:: AWS Builders Online Series
PPTX
오픈 소스 도구를 활용한 성능 테스트 방법 및 사례
PPTX
Cross browser testing with browser stack
PPTX
ECS+Locust로 부하 테스트 진행하기
PPTX
02 api gateway
PDF
AWS를 이용한 렌더링 아키텍처 및 사용 사례 :: 박철수 솔루션즈 아키텍트 :: AWS Media Day
PDF
Cloud run - Serverless Containers Done Right
PDF
[AWS Techshift] 파트너 사업을 준비하기 위해 기억해야 할 5가지 - 양승호, AWS 파트너 사업 개발 담당 이사
PDF
AWS Fault Injection Simulator를 통한 실전 카오스 엔지니어링 - 윤석찬 AWS 수석 테크에반젤리스트 / 김신 SW엔...
PDF
[Games on AWS 2019] AWS 입문자를 위한 초단기 레벨업 트랙 | AWS 레벨업 하기! : 네트워크 - 권신중 AWS 솔루션...
PPTX
Introduction to kubernetes
PDF
Managing traffic routing with istio and envoy workshop
PDF
PDF
컨테이너와 서버리스 기술을 통한 디지털 트랜스포메이션::정도현::AWS Summit Seoul 2018
PDF
AWS 기반의 마이크로 서비스 아키텍쳐 구현 방안 :: 김필중 :: AWS Summit Seoul 20
PDF
Evolution of containers to kubernetes
PPTX
Docker 101 - Nov 2016
PDF
Introduction à React
PPTX
React js for beginners
PDF
[오픈소스컨설팅]Docker기초 실습 교육 20181113_v3
AWS IAM과 친해지기 – 조이정, AWS 솔루션즈 아키텍트:: AWS Builders Online Series
오픈 소스 도구를 활용한 성능 테스트 방법 및 사례
Cross browser testing with browser stack
ECS+Locust로 부하 테스트 진행하기
02 api gateway
AWS를 이용한 렌더링 아키텍처 및 사용 사례 :: 박철수 솔루션즈 아키텍트 :: AWS Media Day
Cloud run - Serverless Containers Done Right
[AWS Techshift] 파트너 사업을 준비하기 위해 기억해야 할 5가지 - 양승호, AWS 파트너 사업 개발 담당 이사
AWS Fault Injection Simulator를 통한 실전 카오스 엔지니어링 - 윤석찬 AWS 수석 테크에반젤리스트 / 김신 SW엔...
[Games on AWS 2019] AWS 입문자를 위한 초단기 레벨업 트랙 | AWS 레벨업 하기! : 네트워크 - 권신중 AWS 솔루션...
Introduction to kubernetes
Managing traffic routing with istio and envoy workshop
컨테이너와 서버리스 기술을 통한 디지털 트랜스포메이션::정도현::AWS Summit Seoul 2018
AWS 기반의 마이크로 서비스 아키텍쳐 구현 방안 :: 김필중 :: AWS Summit Seoul 20
Evolution of containers to kubernetes
Docker 101 - Nov 2016
Introduction à React
React js for beginners
[오픈소스컨설팅]Docker기초 실습 교육 20181113_v3
Ad

Similar to nginx 입문 공부자료 (20)

PDF
Network Automation: Ansible 102
PDF
PDF
Automate Your FME Server Installs, Take a Five Minute Break
PDF
What\'s new in Rails 2.1
PDF
Umleitung: a tiny mochiweb/CouchDB app
PDF
Micropage in microtime using microframework
PDF
History Of Redis Replication And Future Prospects: Zhao Zhao
PPTX
Linux Shell Scripting.pptx
PDF
Rack Middleware
PDF
How we use and deploy Varnish at Opera
DOCX
Vagrant file samples for various Hadoop distributions
PDF
Linux 系統管理與安全:系統防駭與資訊安全
PDF
Puppet and the HashiStack
PDF
R57php 1231677414471772-2
PDF
Docker remote-api
PDF
glance replicator
PDF
Docker in Action
PDF
Workshop Infrastructure as Code - Suestra
ODP
Satellite Apps around the Cloud: Integrating your infrastructure with JIRA St...
ODP
Summit2011 satellites-robinf-20110605
Network Automation: Ansible 102
Automate Your FME Server Installs, Take a Five Minute Break
What\'s new in Rails 2.1
Umleitung: a tiny mochiweb/CouchDB app
Micropage in microtime using microframework
History Of Redis Replication And Future Prospects: Zhao Zhao
Linux Shell Scripting.pptx
Rack Middleware
How we use and deploy Varnish at Opera
Vagrant file samples for various Hadoop distributions
Linux 系統管理與安全:系統防駭與資訊安全
Puppet and the HashiStack
R57php 1231677414471772-2
Docker remote-api
glance replicator
Docker in Action
Workshop Infrastructure as Code - Suestra
Satellite Apps around the Cloud: Integrating your infrastructure with JIRA St...
Summit2011 satellites-robinf-20110605
Ad

More from choi sungwook (20)

PDF
테라폼스터디5주차 1편
PDF
컨테이너와 도커 이해
PDF
kustomize 빠르게 시작하기
PDF
entrypoint 오버라이딩
PDF
젠킨스 컨셉
PDF
System Manager를 이용한 EC2 원격쉘 접속
PDF
aws profile관리
PDF
nginx 504 timeout오류 해결
PDF
AWS 다른계정 리소스 사용방법
PDF
docker build cache
PDF
Dockerfile과 도커 이미지 레이어 관계
PDF
도커 이미지 레이어 구조
PDF
helm 입문
PDF
Prometheus 원리와 예제
PDF
쿠버네티스 멀티 클러스터 관리
PDF
EC2 기타비용
PDF
스프링부트 JPA와 mariadb 도커 컨테이너 연동
PDF
윈도우에서 도커 설치
PDF
onpremise환경에서 kubespray설치
PDF
[개인 프로젝트] 쿠버네티스를 이용한 개발환경 자동화 구축시스템 - 프로토타입
테라폼스터디5주차 1편
컨테이너와 도커 이해
kustomize 빠르게 시작하기
entrypoint 오버라이딩
젠킨스 컨셉
System Manager를 이용한 EC2 원격쉘 접속
aws profile관리
nginx 504 timeout오류 해결
AWS 다른계정 리소스 사용방법
docker build cache
Dockerfile과 도커 이미지 레이어 관계
도커 이미지 레이어 구조
helm 입문
Prometheus 원리와 예제
쿠버네티스 멀티 클러스터 관리
EC2 기타비용
스프링부트 JPA와 mariadb 도커 컨테이너 연동
윈도우에서 도커 설치
onpremise환경에서 kubespray설치
[개인 프로젝트] 쿠버네티스를 이용한 개발환경 자동화 구축시스템 - 프로토타입

Recently uploaded (20)

PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
OMC Textile Division Presentation 2021.pptx
PDF
Web App vs Mobile App What Should You Build First.pdf
PDF
August Patch Tuesday
PDF
A novel scalable deep ensemble learning framework for big data classification...
PDF
project resource management chapter-09.pdf
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
Chapter 5: Probability Theory and Statistics
PPTX
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
PDF
Microsoft Solutions Partner Drive Digital Transformation with D365.pdf
PPTX
cloud_computing_Infrastucture_as_cloud_p
PPTX
Programs and apps: productivity, graphics, security and other tools
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
A comparative analysis of optical character recognition models for extracting...
PPTX
TLE Review Electricity (Electricity).pptx
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
1 - Historical Antecedents, Social Consideration.pdf
PPTX
A Presentation on Touch Screen Technology
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
Agricultural_Statistics_at_a_Glance_2022_0.pdf
OMC Textile Division Presentation 2021.pptx
Web App vs Mobile App What Should You Build First.pdf
August Patch Tuesday
A novel scalable deep ensemble learning framework for big data classification...
project resource management chapter-09.pdf
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Chapter 5: Probability Theory and Statistics
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
Microsoft Solutions Partner Drive Digital Transformation with D365.pdf
cloud_computing_Infrastucture_as_cloud_p
Programs and apps: productivity, graphics, security and other tools
Digital-Transformation-Roadmap-for-Companies.pptx
A comparative analysis of optical character recognition models for extracting...
TLE Review Electricity (Electricity).pptx
Assigned Numbers - 2025 - Bluetooth® Document
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
1 - Historical Antecedents, Social Consideration.pdf
A Presentation on Touch Screen Technology
gpt5_lecture_notes_comprehensive_20250812015547.pdf

nginx 입문 공부자료