nginx(15)
-
Let's Encrypt 인증서 생성
https://nginxstore.com/blog/nginx/lets-encrypt-%EC%9D%B8%EC%A6%9D%EC%84%9C%EB%A1%9C-nginx-ssl-%EC%84%A4%EC%A0%95%ED%95%98%EA%B8%B0/ Let’s Encrypt 인증서로 NGINX SSL 설정하기 이 모범 사례에서는 Let’s Encrypt 클라이언트를 사용하여 인증서를 생성하는 방법과 이를 사용하도록 NGINX 오픈소스 및 NGINX Plus를 사용하여 nginx ssl 설정을 자동으로 구성하는 방법을 다룹니다. nginxstore.com # Let's Encript 클라이언트 설치 sudo apt-get install certbot -y sudo apt-get install python3-certbot..
2024.03.01 -
Elasticsearch에 metricbeat 적용
https://www.elastic.co/guide/en/beats/metricbeat/8.12/metricbeat-installation-configuration.html Metricbeat quick start: installation and configuration | Metricbeat Reference [8.12] | Elastic To test your configuration file, change to the directory where the Metricbeat binary is installed, and run Metricbeat in the foreground with the following options specified: ./metricbeat test config -e. Mak..
2024.02.11 -
nginx와 minikube ingress 연동
DNS 등록 hosts 파일이나 DNS에 등록 ------------------------------------ {minikube가 설치된 PC IP} pod.test.co.kr {minikube가 설치된 PC IP} node.test.co.kr ------------------------------------ ingress 등록 # pod ingress apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: pod-ingress annotations: nginx.ingress.kubernetes.io/rewrite-target: /$1 spec: rules: - host: pod.test.co.kr http: paths: - path: / pat..
2024.02.03 -
nginx 인증 설정
HTTP Basic Authentication https://www.howtogeek.com/devops/how-to-setup-basic-http-authentication-on-nginx/ How to Set Up Basic HTTP Authentication in NGINX Basic username and password authentication is an easy and simple way to secure administrative panels and backend services. Nginx can be configured to protect certain areas of your website, or even used as a reverse proxy to secure other serv..
2023.06.10 -
minikube proxy 설정
hosts 파일 수정 cd /etc vi hosts # 아래 내용 추가 127.0.0.1 ${적용할 도메인} conf 설정 server { listen 8443 ssl; # 도메인으로 설정하지 않으면, 인증서에 허용 IP를 추가해줘야 함 server_name ${적용할 도메인}; ssl_certificate "/home/barisein/.minikube/profiles/minikube/apiserver.crt"; ssl_certificate_key "/home/barisein/.minikube/profiles/minikube/apiserver.key"; access_log /var/log/nginx/reverse-access.log; error_log /var/log/nginx/reverse-error...
2023.06.06 -
nginx Trouble Shooting
셋팅 내용이 맞는지 확인 # 환경설정에 에러가 있는지 확인 nginx -t # 에러 로그 확인 tail-f /var/log/nginx/error.log
2023.05.27