【发布时间】:2018-06-05 23:05:42
【问题描述】:
目前我有 3 台虚拟机在 ESXi 上运行,其中一台使用 nginx 控制请求。一个运行 apache Web 服务器的网站是第一个示例。最后一个是通过 ssl 加密的 snap 运行 nextcloud,当我尝试通过 nginx 运行它时,它给了我这个错误。如何使用 ssl 通过 nginx 运行它?
这是通过 nginx 工作的网站
server {
listen 80;
server_name URL URL2;
location / {
proxy_pass http://192.168.1.7;
proxy_set_header host URL;
}
}
这是不支持 ssl 的那个
server {
listen 80;
listen 443 ssl;
server_name URL3;
location / {
proxy_pass https://192.168.1.17;
proxy_set_header host URL3;
}
}
这是错误
Secure Connection Failed
The connection to dynanixcloud.ddns.net was interrupted while the page was loading.
The page you are trying to view cannot be shown because the authenticity of the received data could not be verified.
【问题讨论】:
标签: ssl nginx virtual-machine reverse-proxy nextcloud