You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@trafficserver.apache.org by Juan Andrade <ju...@gmail.com> on 2012/11/09 03:39:26 UTC

traffic server used (443 -> 80) --> origin servers

I'm having a hard time figuring this out:

Currently running reverse proxy with nginx:443 and haproxy:80.

nginx:443 does ssl termination and uses haproxy:80 as upstream location.

How could I accomplish this with traffic server.  Traffic server receive
http and https.

Currently have this setup

records.config
  CONFIG proxy.config.http.no_dns_just_forward_to_parent INT 1
  CONFIG proxy.config.http.parent_proxy_routing_enable INT 1
  CONFIG proxy.config.ssl.enabled INT 1

ssl_multicert.config
   dest_ip=192.168.33.10 ssl_cert_name=ssl/site.crt
ssl_key_name=ssl/site.key

remap.config
  map http://www.mysite.com http://www.mysite.com

parent.conf
  dest_domain=www.mysite.com parent="origin_server1:80" round_robin=strict

Thanks for any help