I have a CentOS 6.4 server with Apache 2.2.15.
I would like to do a proxy to ftps server. Bellow you can find my configuration:
<VirtualHost *:8001>
DocumentRoot /var/www/html/root
RewriteEngine On
SSLProxyEngine on
SSLProxyMachineCertificateFile "ssl/cert.pem"
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / ftp://IP:990/
ProxyPassReverse / ftp://IP:990/
ErrorLog logs/proxy.error.log
CustomLog logs/proxy.access.log common
</VirtualHost>
When I am trying to do a proxy URL:
curl -ik http://localhost:8001/
I am getting a following response in logs:
[Tue Dec 10 13:17:22 2013] [error] [client IP] proxy: SSL/TLS required on the control channel returned by /
Anyone knows how to solve it?
Thanks in advance.