현재 요청을 제어하는 nginx가있는 ESXi에서 3 대의 가상 시스템이 실행 중입니다. 첫 번째 예제 인 웹 사이트가있는 하나의 아파치 웹 서버. 마지막 하나는 암호화 된 ssl 인 스냅인을 사용하여 nextcloud를 실행하고 있지만 nginx를 실행하려고하면 오류가 발생합니다. 어떻게하면 SSL을 nginx 통해 실행할 수 있습니까? Nginx 프록시 패스가 SSL과 함께 작동하지 않습니다.
이
이 SSL을 작동하지 않습니다 하나의 nginxserver {
listen 80;
server_name URL URL2;
location/{
proxy_pass http://192.168.1.7;
proxy_set_header host URL;
}
}
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.
[** 코드 또는 오류의 이미지를 게시하지 마십시오! **] (https://meta.stackoverflow.com/q/303812/ 같은 뭔가 995714) – Rob