test_http3_vhost.yml 772 B

1234567891011121314151617181920212223242526272829303132333435
  1. version: "2"
  2. services:
  3. http3-vhost-enabled:
  4. image: web
  5. expose:
  6. - "80"
  7. environment:
  8. WEB_PORTS: 80
  9. VIRTUAL_HOST: http3-vhost-enabled.nginx-proxy.tld
  10. labels:
  11. com.github.nginx-proxy.nginx-proxy.http3.enable: "true"
  12. http3-vhost-disabled:
  13. image: web
  14. expose:
  15. - "80"
  16. environment:
  17. WEB_PORTS: 80
  18. VIRTUAL_HOST: http3-vhost-disabled.nginx-proxy.tld
  19. labels:
  20. com.github.nginx-proxy.nginx-proxy.http3.enable: "false"
  21. http3-vhost-default-disabled:
  22. image: web
  23. expose:
  24. - "80"
  25. environment:
  26. WEB_PORTS: 80
  27. VIRTUAL_HOST: http3-vhost-default-disabled.nginx-proxy.tld
  28. sut:
  29. image: nginxproxy/nginx-proxy:test
  30. volumes:
  31. - /var/run/docker.sock:/tmp/docker.sock:ro