如果一站點既要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
以上就介紹了Nginx一個server主機上80、433http、https共存,包含了方面的內容,希望對PHP教學有興趣的朋友有所幫助。