Google Chrome은 모든 HTTP 사이트를 '안전하지 않음'으로 표시합니다. 30분 안에 전환하세요.
# Certbot (Ubuntu/Debian)
sudo apt install certbot python3-certbot-nginx
sudo certbot --nginx -d yourdomain.com -d www.yourdomain.com
# Nginx - Add to server block
server {{
listen 80;
server_name yourdomain.com www.yourdomain.com;
return 301 https://$host$request_uri;
}}
HTTPS 페이지 내의 HTTP 리소스는 브라우저가 차단합니다. http://를 모두 https://로 교체하세요.
SSL, HSTS, 혼합 콘텐츠 — 30초 확인