TCP -TLS Redirection
Chaitanya Kamsu
Chaitanya_Kamsu at infosys.com
Thu Dec 5 12:59:11 UTC 2013
Hi Team ,
I want to do a tcp to tls proxy. we need to communicate to apple server via tls (tcp over ssl). our server does not have internet access so we need to use a proxy server that has internet access which can
* either accept the tcp communication and do a tls communication with apns. in this case our server just need to send data over tcp to proxy server without any SSL.
* our server can send data over tls, if proxy server can do a transparent redirection.
we have tried nginx, it is able to do tcp to tcp redirection but nginx is not allowing ssl directive to be specified in the upstream block of tcp configuration.
any help in this direction will be greatly appreciated. i am giving below the tcp configuration in nginx configuration:
tcp {
upstream cluster {
server 127.0.0.1:9521;
}
server {
listen 127.0.0.1:5894;
access_log logs/tcp_access.log
so_keepalive off;
timeout 60000;
server_name Proxy;
proxy_pass cluster;
}
}
Please give the solution.
Regards,
Chaitanya K
DTAG Push Server
VOIP:+91 8039135521
**************** CAUTION - Disclaimer *****************
This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended solely
for the use of the addressee(s). If you are not the intended recipient, please
notify the sender by e-mail and delete the original message. Further, you are not
to copy, disclose, or distribute this e-mail or its contents to any other person and
any such actions are unlawful. This e-mail may contain viruses. Infosys has taken
every reasonable precaution to minimize this risk, but is not liable for any damage
you may sustain as a result of any virus in this e-mail. You should carry out your
own virus checks before opening the e-mail or attachment. Infosys reserves the
right to monitor and review the content of all messages sent to or from this e-mail
address. Messages sent to or from this e-mail address may be stored on the
Infosys e-mail system.
***INFOSYS******** End of Disclaimer ********INFOSYS***
More information about the nginx
mailing list