Ich habe den Apache-Server als Reverse-Proxy konfiguriert und es funktioniert einwandfrei, wenn ich einen Back-End-Server als HTTP verweise. Das ist:
Ich habe den virtuellen Host 443 wie folgt konfiguriert:
ProxyPass /primary/store http://localhost:9763/store/
ProxyPassReverse /primary/store http://localhost:9763/store/
Hier greifen Benutzer gerne auf den Server zu https://localhost/primary/store
Und das funktioniert gut ... Aber ich möchte HTTP-Server wie konfigurieren;
ProxyPass /primary/store https://localhost:9443/store/
ProxyPassReverse /primary/store https://localhost:9443/store/
Wenn ich wie Apache Server konfiguriere, gibt es 500 interne Serverfehler. Was mache ich hier falsch?
Der Fehler, den ich bekomme, ist:
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.
Im Apache-Fehlerprotokoll heißt es;
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)
Wie konfiguriere ich den HTTP-Server für die Kommunikation mit dem HTTPS-Server?
quelle
SSLProxyEngine on
nach dem HinzufügenSSLEngine on
auf httpd-ssl.conf Datei und funktioniert wie ein Zauber!In meinem Fall wurde mein Server so konfiguriert, dass er nur im https-Modus funktioniert. Beim Versuch, auf den http-Modus zuzugreifen, ist ein Fehler aufgetreten. Also wechselte
http://my-service
zuhttps://my-service
geholfen.quelle