nginx-proxy-auto-docker/test/test_virtual_path.yml
Constantin Wildförster 8d47538172 add virtual path tests
2020-02-04 20:43:04 +01:00

42 lines
754 B
YAML

web1:
image: web
expose:
- "81"
environment:
WEB_PORTS: "81"
VIRTUAL_HOST: "nginx-proxy.test"
web2:
image: web
expose:
- "82"
environment:
WEB_PORTS: "82"
VIRTUAL_HOST: "nginx-proxy.test"
VIRTUAL_PATH: "/foo"
web3:
image: web
expose:
- "83"
environment:
WEB_PORTS: "83"
VIRTUAL_HOST: "nginx-proxy.test"
VIRTUAL_PATH: "/bar"
VIRTUAL_PATH_STRIP: "true"
web4:
image: web
expose:
- "84"
environment:
WEB_PORTS: "84"
VIRTUAL_HOST: "nginx-proxy.test"
VIRTUAL_PATH: "/deep/path"
VIRTUAL_PATH_STRIP: "true"
sut:
image: jwilder/nginx-proxy:test
volumes:
- /var/run/docker.sock:/tmp/docker.sock:ro
- ./lib/ssl/dhparam.pem:/etc/nginx/dhparam/dhparam.pem:ro