test_http3-vhost.yml 743 B

1234567891011121314151617181920212223242526272829303132
  1. services:
  2. # nginx-proxy:
  3. # environment:
  4. # ENABLE_HTTP3: "false" #Disabled by default
  5. http3-vhost-enabled:
  6. image: web
  7. expose:
  8. - "80"
  9. environment:
  10. WEB_PORTS: "80"
  11. VIRTUAL_HOST: http3-vhost-enabled.nginx-proxy.tld
  12. labels:
  13. com.github.nginx-proxy.nginx-proxy.http3.enable: "true"
  14. http3-vhost-disabled:
  15. image: web
  16. expose:
  17. - "80"
  18. environment:
  19. WEB_PORTS: "80"
  20. VIRTUAL_HOST: http3-vhost-disabled.nginx-proxy.tld
  21. labels:
  22. com.github.nginx-proxy.nginx-proxy.http3.enable: "false"
  23. http3-vhost-default-disabled:
  24. image: web
  25. expose:
  26. - "80"
  27. environment:
  28. WEB_PORTS: "80"
  29. VIRTUAL_HOST: http3-vhost-default-disabled.nginx-proxy.tld