mirror of
https://github.com/nginx-proxy/nginx-proxy
synced 2025-02-05 05:41:39 +01:00
42 lines
706 B
YAML
42 lines
706 B
YAML
networks:
|
|
default:
|
|
name: "test_virtual-path-net"
|
|
|
|
services:
|
|
foo:
|
|
image: web
|
|
expose:
|
|
- "42"
|
|
environment:
|
|
WEB_PORTS: "42"
|
|
VIRTUAL_HOST: "foo.nginx-proxy.test"
|
|
|
|
web1:
|
|
image: web
|
|
expose:
|
|
- "81"
|
|
environment:
|
|
WEB_PORTS: "81"
|
|
VIRTUAL_HOST: "nginx-proxy.test"
|
|
VIRTUAL_PATH: "/web1/"
|
|
VIRTUAL_DEST: "/"
|
|
|
|
web2:
|
|
image: web
|
|
expose:
|
|
- "82"
|
|
environment:
|
|
WEB_PORTS: "82"
|
|
VIRTUAL_HOST: "nginx-proxy.test"
|
|
VIRTUAL_PATH: "/web2/"
|
|
VIRTUAL_DEST: "/"
|
|
|
|
web3:
|
|
image: web
|
|
expose:
|
|
- "83"
|
|
environment:
|
|
WEB_PORTS: "83"
|
|
VIRTUAL_HOST: "nginx-proxy.test"
|
|
VIRTUAL_PATH: "/"
|