Skonfigurowałem serwer Apache jako odwrotne proxy i działa dobrze, jeśli wskażę serwer zaplecza jako HTTP. To jest:
Skonfigurowałem hosta wirtualnego 443 na przykład:
ProxyPass /primary/store http://localhost:9763/store/
ProxyPassReverse /primary/store http://localhost:9763/store/
Tutaj użytkownicy będą uzyskiwać dostęp do serwera, takiego jak https://localhost/primary/store
I to działa dobrze ... Ale chcę skonfigurować serwer HTTP, taki jak;
ProxyPass /primary/store https://localhost:9443/store/
ProxyPassReverse /primary/store https://localhost:9443/store/
Kiedy konfiguruję jak serwer apache daje wewnętrzny błąd serwera 500. Co ja tu robię źle?
Pojawia się błąd:
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
W dzienniku błędów Apache stwierdza się;
nt: SSLProxyEngine]
[Mon Aug 04 00:03:26 2014] [error] proxy: HTTPS: failed to enable ssl support for [::1]:9443 (localhost)
[Mon Aug 04 00:03:31 2014] [error] [client ::1] SSL Proxy requested for localhost:443 but not enabled [Hint: SSLProxyEngine]
[Mon Aug 04 00:03:31 2014] [error] proxy: HTTPS: failed to enable ssl support for [::1]:9443 (localhost)
[Mon Aug 04 00:03:51 2014] [error] [client ::1] SSL Proxy requested for localhost:443 but not enabled [Hint: SSLProxyEngine]
[Mon Aug 04 00:03:51 2014] [error] proxy: HTTPS: failed to enable ssl support for [::1]:9443 (localhost)
Jak skonfigurować serwer http, aby komunikował się z serwerem HTTPS?
apache
httpd.conf
Ratha
źródło
źródło
SSLProxyEngine on
poSSLEngine on
w pliku httpd-ssl.conf i działa jak urok!W moim przypadku mój serwer został skonfigurowany do pracy tylko w trybie https i podczas próby uzyskania dostępu do trybu http wystąpił błąd. Więc zmiana,
http://my-service
abyhttps://my-service
pomóc.źródło