Я сконфігурував сервер 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?