test_http3_global_disabled.yml 893 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. volumes:
  2. nginx_conf:
  3. services:
  4. http3-global-disabled:
  5. image: web
  6. expose:
  7. - "80"
  8. environment:
  9. WEB_PORTS: 80
  10. VIRTUAL_HOST: http3-global-disabled.nginx-proxy.tld
  11. sut:
  12. profiles:
  13. - singleContainer
  14. image: nginxproxy/nginx-proxy:test
  15. volumes:
  16. - &dockerSocket /var/run/docker.sock:/tmp/docker.sock:ro
  17. #environment:
  18. #ENABLE_HTTP3: "false" #Disabled by default
  19. sut-dockergen:
  20. profiles:
  21. - separateContainers
  22. image: nginxproxy/nginx-proxy:test-dockergen
  23. volumes:
  24. - &confVolume nginx_conf:/etc/nginx/conf.d
  25. - *dockerSocket
  26. #environment:
  27. #ENABLE_HTTP3: "false" #Disabled by default
  28. sut-nginx:
  29. profiles:
  30. - separateContainers
  31. container_name: nginx-proxy
  32. image: nginx:alpine
  33. volumes:
  34. - *confVolume
  35. labels:
  36. - "com.github.nginx-proxy.nginx-proxy.nginx"