반응형
nginx https 설정
-
Nginx | HTTPS, SSL 인증서 적용하기▼ DevOps 2022. 1. 11. 20:37
Windows 10 | nginx 설치하기 Linux AMI(CentOS)에 Nginx 설치하기 Nginx Version 1.20.2 Nginx가 이미 설치되었다는 가정 하에 conf 파일을 수정한다. Windows 설치 경로/nginx/conf에 있는 nginx.conf 파일 worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80; server_name example.com; location / { #301은 모든 트래픽을 리다이렉션 하는데 사용된..