ALB
-
aws-load-balancer-controller 설치카테고리 없음 2022. 6. 22. 13:47
aws eks aws-load-balancer-controller 설치 방법 AWS Load Balancer Controller 추가 기능 출처 https://oops4u.tistory.com/2586 아래와 같이 진행 ------------------------------- eksctl utils associate-iam-oidc-provider \ --region ap-northeast-2 \ --cluster eks-name \ --approve curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/main/docs/install/iam_policy.json aws ia..
-
aws alb 리다이렉트IT 2020. 3. 16. 16:19
aws alb nginx 상황 #포트 80->https:1443 #포트 80 -> ssl 1443 --------------- aws 설정 conf.d/ssl.conf server { listen 80; server_name www.com; client_max_body_size 5M; keepalive_timeout 10; #access_log off; #access_log /var/log/nginx/www.com main; error_log /tmp/www.com warn; location / { # proxy_pass http://127.0.0.1:8301/; # proxy_redirect http://127.0.0.1:8301/ http://$host; proxy_set_header Host $ho..
-
aws alb 설정 값IT 2020. 3. 12. 16:12
#aws -alb - nginx 80-> 443으로 설정 할때 # For more information on configuration, see: # * Official English Documentation: http://nginx.org/en/docs/ # * Official Russian Documentation: http://nginx.org/ru/docs/ user nginx; worker_processes auto; error_log /var/log/nginx/error.log; pid /var/run/nginx.pid; # Load dynamic modules. See /usr/share/nginx/README.dynamic. include /usr/share/nginx/modules/*.co..