amazon web services - Connection Partially Encrypted in Firefox :SSL -
i have uploaded ssl certificates iam purchased comodo , evrything looks fine in chrome , opera. mozilla giving error: "connection partially encrypted". not able gauge why happening. link : https://www.advisorcircuit.com/ please tell me possible culprit this? , want know , how can redirect users https ebven if type http if type http website loads , opens. using aws t2.medium instance. there configuration need in console??
redirection: have few options:
- block http traffic, allow https on security group level ( not nicest solution.
- use elastic load balancer, listening on https port. ( same above)
- the webserver ( of them tomcat, iis, etc) supports redirection, sends "http/1.1 301 moved permanently", client browser call again on https.
- if use elastic load balancer ssl termination ( practice, less load on server, easier setup of ssl certificate). traffic inside vpc goes on port 80. in case need setup webserver redirect differently. instead of incoming port, trigger redirection should based on "x-forwarded-proto" header value, original protocol client using.
for production environment last setup aws best practice. ( of course there other solutions)
Comments
Post a Comment