So konfigurieren Sie SSL in Nginx, um sowohl http- als auch https-Zugriff zu ermöglichen
仅有的幸福
仅有的幸福 2017-05-16 17:28:38
0
4
601

Nach der Konfiguration springt der Zugriff auf http automatisch zu https- -. Es tut so weh

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;
}
仅有的幸福
仅有的幸福

Antworte allen(4)
左手右手慢动作

这个在Nginx的文档中有的:

listen              80;
listen              443 ssl;

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

Peter_Zhu

两个server行不行?

世界只因有你

楼主这么配置不行吧,应该要两个server,一个监听的是80端口,一个监听的是443端口。酱紫...

淡淡烟草味

ssl on; 把这行去掉就好了

Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage