일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- WEB
- devops #engineer
- variable
- DOIK
- bash
- 컨테이너
- linux
- 쿠버네티스
- aws #engineer
- Strimzi
- devops #jenkins
- httpd실행
- multivm
- namespace
- k8s
- docker
- java
- Engineer
- python
- mongodb operator
- ioredirection
- Vagrant
- 파이썬
- springboot
- nginx
- RSS
- 도커
- container
- Kubernetes
- 초간단파이썬
- Today
- Total
목록nginx (2)
샤인의 IT (막 적는) 메모장
Nginx Ingress Controller 배포 시 api request 확인해보면 헤더 정보가 나와있음 (최근 버전은 없는듯) 헤당 서버 헤더 정보를 숨기고 싶을 때 Annotation과 Configmap으로 설정할 수 있음 proxy-hide-header: "Server" server-tokens: "false" 해당 nginx.conf 설정을 넣어서 다시 요청하면 헤더 정보 없어짐! #Ingress Controller 헤더 정보를 숨기고 싶을 때 Annotaion configuration-snippet은 location 필드만 수정해주기 때문에 Configmap 수정 필요 #Deployment Or DaemonSet 설정 시 nginx.ingress.kubernetes.io/server-snipp..
Nginx 설정정보 정리 블록 http 블록 Server, Location의 루트 블록, 설정된 값을 하위 블록들은 상속 Server 블록 하나의 웹사이트를 선언하는데 사용됨 (가상 호스팅 개념) Location 블록 Server 블록 안에 저장되면서 특정 URL을 처리하는 방법을 정의 Events 블록 네트워크의 동작방법과 관련된 설정값 설정, 따로 다른 블록과 상속관계를 가지지 않음 Virtual Host server { server_name example1.com root /var/www/example1.net } server { server_name example2.com root /var/www/exaple2.net } http-server Snippet 예시 http { server { #Po..