0

We have docker swarm container and would like to enable https to this service. Can anyone tell me how to integrate Windows Azure Docker container service with SSL certificate ?

1 Answers1

0

Can anyone tell me how to integrate Windows Azure Docker container service with SSL certificate ?

For now, Azure load balancer is a basic Layer 4 (TCP) load balancer, many applications require additional features, so we need another load balancer.

If we want to enable SSL certificate for ACS swarm, we should use NGINX, the NGINX provides is SSL/TLS termination. Nginx work in this way: enter image description here

More information about NGINX load balancer, please refer to this link.

Load balancing containers with Docker Swarm and Nginx, please refer to this link.

By the way, here a similar case about your, but that case talk about K8S, not Swarm, use Nginx to load balancing SSL.

Jason Ye
  • 13,710
  • 2
  • 16
  • 25
  • Just checking in to see if the information provided was helpful. Please let me know if you would like further assistance. – Jason Ye Oct 17 '17 at 01:29