사이트에 80 http 액세스와 443 https 액세스가 모두 필요한 경우.
https와 http가 공존하도록 허용하려면 구성 파일에서 ssl on을 사용할 수 없습니다. Listen 443 ssl;
Instance
server
{
listen 80;
listen 443 ssl;
server_name www.iamle.com;
index index.html index.htm index.php;
root /home/wwwroot/www.iamle. com/ ;
#ssl on; 여기에 댓글 달기
ssl_certificate /usr/local/nginx/conf/www_iamle_com.crt;
ssl_certificate_key /usr/local/nginx/conf/www_iamle_com.key;
#다음 구성은 생략합니다
}
출처: http://www.iamle.com/archives/1231.html
http //nginx .org/en/docs/http/configuring_https_servers.html#single_http_https_server
위 내용은 관련 내용을 포함하여 Nginx 서버 호스트에서 80, 433 http와 https의 공존을 소개하고 있으며, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.