首頁 >後端開發 >php教程 >Nginx一個server主機上80、433http、https共存

Nginx一個server主機上80、433http、https共存

WBOY
WBOY原創
2016-07-29 09:01:481723瀏覽

如果一站點既要80 http訪問,又要443https訪問。

要讓https和http並存,不能在設定檔中使用ssl on,設定listen 443 ssl;

實例

server
{

_listen 80;
listen 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://www.iamle.com/archives/1231.html .org/en/docs/http/configuring_https_servers.html#single_http_https_server

以上就介紹了Nginx一個server主機上80、433http、https共存,包含了方面的內容,希望對PHP教學有興趣的朋友有所幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn