vmware nginx 외부 오픈

2023. 5. 5. 18:51Web Server/nginx

host PC 밖에서 접속하는 경우에만 적용됨

windows에 port forwarding 설정

netsh interface portproxy add v4tov4 listenport=443 listenaddress=0.0.0.0 connectport=443 connectaddress={vm IP}

# 확인
netsh interface portproxy show all

# 삭제
netsh interface portproxy delete v4tov4 listenport=80 listenaddress=0.0.0.0

windows에 방화벽 포트 오픈

Windows Defender 방화벽 > 고급 설정 > 인바운드 규칙 > 새 규칙 > 포트

TCP
특정 로컬 포트 : 443
연결허용
이름: nginx

https://happycloud-lee.tistory.com/235

 

kubernetes API Server의 IP 변경하기

k8s cluster를 설치할 때 API server의 IP는 보안 때문에 보통 private IP를 지정합니다. 아래와 같이 말입니다. kubeadm init --pod-network-cidr= --apiserver-advertise-address= 어떠한 이유로 외부에서 k8s의 API server로 접

happycloud-lee.tistory.com

https://yooloo.tistory.com/203

 

쿠버네티스 Cluster 설치하기 - on ubuntu linux

Install Kubernetes Cluster on Ubuntu 20.04 with kubeadm 설치환경 - OS : Ubuntu 20.04 LTS(2 CPU, 4GB Memory, 20GB Disk 이상) - master node : 1대(hostname : master) - worker node : 2대(hostname : worker-1, worker-2) 설치순서 master node - contain

yooloo.tistory.com

https://blog.scottlowe.org/2019/07/30/adding-a-name-to-kubernetes-api-server-certificate/

 

Adding a Name to the Kubernetes API Server Certificate - Scott's Weblog - The weblog of an IT pro focusing on cloud computing, K

Adding a Name to the Kubernetes API Server Certificate - Scott's Weblog - The weblog of an IT pro focusing on cloud computing, Kubernetes, Linux, containers, and networking

blog.scottlowe.org

 

'Web Server > nginx' 카테고리의 다른 글

nginx 인증 설정  (0) 2023.06.10
minikube proxy 설정  (0) 2023.06.06
nginx Trouble Shooting  (0) 2023.05.27
nginx 사설 ssl 적용  (0) 2023.05.07
ubunbu nginx 설치  (0) 2023.05.01