HTTPS 백엔드 서버와 통신하도록 Apache 서버를 구성하는 방법은 무엇입니까? 아파치 서버를 역방향 프록시로 구성했으며 백엔드 서버를 HTTP로 지정하면 제대로 작동합니다. 그건: 다음과 같이 가상 호스트 443을 구성했습니다. ProxyPass /primary/store http://localhost:9763/store/ ProxyPassReverse /primary/store http://localhost:9763/store/ 여기서 사용자는 다음과 같이 서버에 액세스합니다. https://localhost/primary/store 그리고 이것은 잘 작동합니다 ...하지만 HTTP 서버를 다음과 같이 구성하고 싶습니다. ProxyPass /primary/store https://localhost..