Как настроить сервер Apache для общения с внутренним сервером 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:9443/store/
ProxyPassReverse /primary/store https://localhost:9443/store/

Когда я настраиваю как сервер apache выдает 500 внутренних ошибок сервера. Что я здесь не так делаю?

Я получаю ошибку:

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, you@example.com 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.

В журнале ошибок apache говорится:

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)

Как настроить http-сервер для общения с HTTPS-сервером?

1 ответ

Решение

Ваш сервер говорит вам именно то, что вам нужно: [Hint: SSLProxyEngine]

Вы должны добавить эту директиву к вашему VirtualHost перед Proxy директивы:

SSLProxyEngine on
ProxyPass /primary/store https://localhost:9763/store/
ProxyPassReverse /primary/store https://localhost:9763/store/

Смотрите документ для более подробной информации.

В моем случае мой сервер был настроен для работы только в режиме https, и при попытке доступа в режим http возникла ошибка. Так меняетсяhttp://my-service к https://my-service помогло.

Другие вопросы по тегам