Eu configurei o servidor apache como um proxy reverso e funciona bem se eu apontar um servidor de back-end como HTTP. Isso é:
Eu configurei o host virtual 443 como:
ProxyPass /primary/store http://localhost:9763/store/
ProxyPassReverse /primary/store http://localhost:9763/store/
Aqui os usuários irão acessar o servidor como https://localhost/primary/store
E isso funciona bem ... Mas eu quero configurar o servidor HTTP como;
ProxyPass /primary/store https://localhost:9443/store/
ProxyPassReverse /primary/store https://localhost:9443/store/
Quando configuro como servidor apache dá 500 erro interno do servidor. O que eu estou fazendo errado aqui?
O erro que recebo é:
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.
No log de erros do apache, ele afirma;
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)
Como configurar o servidor http para falar com o servidor HTTPS?
apache
httpd.conf
Ratha
fonte
fonte
SSLProxyEngine on
depoisSSLEngine on
no arquivo httpd-ssl.conf e funciona perfeitamente!No meu caso, meu servidor foi configurado para funcionar apenas no modo https e ocorreu um erro ao tentar acessar o modo http. Então, mudar
http://my-service
parahttps://my-service
ajudou.fonte