Nginx

在沒有證書的情況下設置 Nginx https(在埠 443 上)?

  • April 5, 2017

我試圖盡可能多地跟進這個執行緒,但我總是收到這個消息:

This site can’t be reached

example.com unexpectedly closed the connection.
Try:
Checking the connection
Checking the proxy and the firewall
ERR_CONNECTION_CLOSED
ReloadHIDE DETAILS

在鉻。

我擁有的配置部分是這樣的:

server {   

  listen  80;
  listen 443 default_server ssl;
  #ssl on;

   server_name example.com   www.example.com;

這是我在本地 127.0.0.1 電腦上的測試網站 example.com。

您必須生成自簽名證書,或者您可以查看 Let’s Encrypt 項目以獲得免費且公開信任的證書。

HTTPS 用於安全流量,如果沒有公鑰和私鑰的證書,您將無法進行加密。

添加連結: https ://letsencrypt.org/

引用自:https://serverfault.com/questions/842779