test_proxy-debug-flag.yml 504 B

123456789101112131415161718192021222324252627
  1. web1:
  2. image: web
  3. expose:
  4. - "80"
  5. - "81"
  6. environment:
  7. WEB_PORTS: "80 81"
  8. VIRTUAL_HOST: "web1.nginx-proxy.tld"
  9. VIRTUAL_PORT: "82"
  10. web2:
  11. image: web
  12. expose:
  13. - "82"
  14. - "83"
  15. environment:
  16. WEB_PORTS: "82 83"
  17. VIRTUAL_HOST: "web2.nginx-proxy.tld"
  18. VIRTUAL_PORT: "82"
  19. sut:
  20. image: nginxproxy/nginx-proxy:test
  21. volumes:
  22. - /var/run/docker.sock:/tmp/docker.sock:ro
  23. - ../lib/ssl/dhparam.pem:/etc/nginx/dhparam/dhparam.pem:ro
  24. environment:
  25. DEBUG: "true"