আমি বিপরীত প্রক্সি হিসাবে অ্যাপাচি সার্ভারটি কনফিগার করেছি এবং আমি HTTP হিসাবে কোনও ব্যাকএন্ড সার্ভারকে নির্দেশ করলে এটি ঠিক কাজ করে। এটাই:
আমি ভার্চুয়াল হোস্ট 443 টির মতো কনফিগার করেছি:
ProxyPass /primary/store http://localhost:9763/store/
ProxyPassReverse /primary/store http://localhost:9763/store/
এখানে ব্যবহারকারীরা যেমন সার্ভারটি অ্যাক্সেস করবেন https://localhost/primary/store
এবং এটি দুর্দান্ত কাজ করে ... তবে আমি এইচটিটিপি সার্ভারের মতো কনফিগার করতে চাই;
ProxyPass /primary/store https://localhost:9443/store/
ProxyPassReverse /primary/store https://localhost:9443/store/
আমি যখন অ্যাপাচি সার্ভারের মতো কনফিগার করি তখন 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.
অ্যাপাচি ত্রুটির লগতে এটি লেখা আছে;
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 সার্ভারটি কনফিগার করবেন?