>백엔드 개발 >PHP 튜토리얼 >하나의 Nginx 서버 호스트에 80, 433http, https가 공존합니다.

하나의 Nginx 서버 호스트에 80, 433http, https가 공존합니다.

WBOY
WBOY원래의
2016-07-29 09:01:481723검색

사이트에 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 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.