test_https-port.yml 266 B

12345678910111213141516
  1. services:
  2. nginx-proxy:
  3. environment:
  4. HTTP_PORT: 8080
  5. HTTPS_PORT: 8443
  6. ports:
  7. - "8080:8080"
  8. - "8443:8443"
  9. web1:
  10. image: web
  11. expose:
  12. - "81"
  13. environment:
  14. WEB_PORTS: "81"
  15. VIRTUAL_HOST: "*.nginx-proxy.tld"