搜尋

首頁  >  問答  >  主體

nginx怎麼設定ssl可以即允許http存取也允許https訪問

現在配置好後訪問http會自動跳到https- -。好蛋痛

server {
    listen 80;
    listen 443;

    server_name *.domain.com;
    root /data0/web/domian.com;
    index index.php;

    ssl on; 
    ssl_certificate /data0/configs/domain.com.crt; 
    ssl_certificate_key /data0/configs/domain.com.pem;

    location / {
    }

    include php.conf;
}
仅有的幸福仅有的幸福2791 天前615

全部回覆(4)我來回復

  • ringa_lee

    ringa_lee2017-05-16 17:30:38

    這個在Nginx的文檔中有的:

    listen              80;
    listen              443 ssl;
    

    參考:http://nginx.org/en/docs/http/configuring_https_servers.html

    回覆
    0
  • 天蓬老师

    天蓬老师2017-05-16 17:30:38

    兩個server行不行?

    回覆
    0
  • 世界只因有你

    世界只因有你2017-05-16 17:30:38

    樓主這麼配置不行吧,應該要兩個server,一個監聽的是80端口,一個監聽的是443端口。醬紫...

    回覆
    0
  • 淡淡烟草味

    淡淡烟草味2017-05-16 17:30:38

    ssl on; 把這行去掉就好了

    回覆
    0
  • 取消回覆