nginx에서 http https 로 리다이렉트 하기


nginx에서 http https 로 리다이렉트 하기

server { listen 80; server_name domain.com www.domain.com; return 301 https://domain.com$request_uri; } /etc/nginx/nginx.conf 에서 위와 같이 http 처리부분에서 301, https uri로 보내버린다. 나머지 처..

nginx에서 http https 로 리다이렉트 하기에 대한 요약내용입니다.

자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.


원문링크 : nginx에서 http https 로 리다이렉트 하기