bunkerweb/examples/reverse-proxy-singlesite/docker-compose.yml
Florian 27356e5d80
Some checks are pending
Automatic tests (DEV) / build-containers (src/ui/Dockerfile, ui) (push) Waiting to run
Automatic tests (DEV) / build-packages (debian-bookworm, deb) (push) Waiting to run
Automatic tests (DEV) / build-packages (debian-trixie, deb) (push) Waiting to run
Automatic tests (DEV) / build-packages (fedora-42, rpm) (push) Waiting to run
Automatic tests (DEV) / build-packages (fedora-43, rpm) (push) Waiting to run
Automatic tests (DEV) / build-packages (fedora-44, rpm) (push) Waiting to run
Automatic tests (DEV) / build-packages (rhel-10, rpm) (push) Waiting to run
Automatic tests (DEV) / build-packages (rhel-8, rpm) (push) Waiting to run
Automatic tests (DEV) / build-packages (rhel-9, rpm) (push) Waiting to run
Automatic tests (DEV) / build-packages (ubuntu, deb) (push) Waiting to run
Automatic tests (DEV) / build-packages (ubuntu-jammy, deb) (push) Waiting to run
Automatic tests (DEV) / codeql (push) Waiting to run
Automatic tests (DEV) / build-containers (src/api/Dockerfile, api) (push) Waiting to run
Automatic tests (DEV) / build-containers (src/autoconf/Dockerfile, autoconf) (push) Waiting to run
Automatic tests (DEV) / build-containers (src/bw/Dockerfile, bunkerweb) (push) Waiting to run
Automatic tests (DEV) / build-containers (src/scheduler/Dockerfile, scheduler) (push) Waiting to run
Automatic tests (DEV) / build-containers (src/all-in-one/Dockerfile, all-in-one) (push) Waiting to run
Automatic tests (DEV) / push-dev (map[from:all-in-one to:bunkerweb-all-in-one]) (push) Blocked by required conditions
Automatic tests (DEV) / push-dev (map[from:api to:bunkerweb-api]) (push) Blocked by required conditions
Automatic tests (DEV) / push-dev (map[from:autoconf to:bunkerweb-autoconf]) (push) Blocked by required conditions
Automatic tests (DEV) / push-dev (map[from:bunkerweb to:bunkerweb]) (push) Blocked by required conditions
Automatic tests (DEV) / push-packages (amd64, el-8, rpm, x86_64, -, 1., 8) (push) Blocked by required conditions
Automatic tests (DEV) / push-dev (map[from:scheduler to:bunkerweb-scheduler]) (push) Blocked by required conditions
Automatic tests (DEV) / push-dev (map[from:ui to:bunkerweb-ui]) (push) Blocked by required conditions
Automatic tests (DEV) / push-packages (amd64, debian-bookworm, deb, amd64, _, , bookworm) (push) Blocked by required conditions
Automatic tests (DEV) / push-packages (amd64, debian-trixie, deb, amd64, _, , trixie) (push) Blocked by required conditions
Automatic tests (DEV) / push-packages (amd64, el-10, rpm, x86_64, -, 1., 10) (push) Blocked by required conditions
Automatic tests (DEV) / push-packages (amd64, el-9, rpm, x86_64, -, 1., 9) (push) Blocked by required conditions
Automatic tests (DEV) / push-packages (amd64, fedora-42, rpm, x86_64, -, 1., 42) (push) Blocked by required conditions
Automatic tests (DEV) / push-packages (amd64, fedora-43, rpm, x86_64, -, 1., 43) (push) Blocked by required conditions
Automatic tests (DEV) / push-packages (amd64, fedora-44, rpm, x86_64, -, 1., 44) (push) Blocked by required conditions
Automatic tests (DEV) / push-packages (amd64, ubuntu, deb, amd64, _, , noble) (push) Blocked by required conditions
Automatic tests (DEV) / push-packages (amd64, ubuntu-jammy, deb, amd64, _, , jammy) (push) Blocked by required conditions
Automatic tests (DEV) / push-packages (dev, bunkerweb) (push) Blocked by required conditions
update rc7 to 1.6.10
2026-05-16 15:24:35 +02:00

68 lines
1.6 KiB
YAML

services:
bunkerweb:
image: bunkerity/bunkerweb:1.6.10
container_name: bunkerweb
ports:
- "80:8080/tcp"
- "443:8443/tcp"
- "443:8443/udp" # for QUIC
environment:
API_WHITELIST_IP: "127.0.0.0/8 10.20.30.0/24"
restart: "unless-stopped"
networks:
- bw-universe
- bw-services
bw-scheduler:
image: bunkerity/bunkerweb-scheduler:1.6.10
container_name: bw-scheduler
depends_on:
- bunkerweb
volumes:
- bw-storage:/data
environment:
BUNKERWEB_INSTANCES: "bunkerweb"
SERVER_NAME: "www.example.com" # replace with your domain
API_WHITELIST_IP: "127.0.0.0/8 10.20.30.0/24"
SERVE_FILES: "no"
DISABLE_DEFAULT_SERVER: "yes"
AUTO_LETS_ENCRYPT: "yes"
USE_CLIENT_CACHE: "yes"
USE_GZIP: "yes"
USE_REVERSE_PROXY: "yes"
REVERSE_PROXY_URL_1: "~ ^/app1/(.*)$$"
REVERSE_PROXY_HOST_1: "http://app1:8080/$$1"
REVERSE_PROXY_URL_2: "~ ^/app2/(.*)$$"
REVERSE_PROXY_HOST_2: "http://app2:8080/$$1"
CUSTOM_CONF_SERVER_HTTP_redirects: |
port_in_redirect off;
location ~ ^/(app1|app2)$$ {
rewrite ^(.*)$$ $$1/ permanent;
}
restart: "unless-stopped"
networks:
- bw-universe
app1:
image: nginxdemos/nginx-hello
networks:
- bw-services
app2:
image: nginxdemos/nginx-hello
networks:
- bw-services
volumes:
bw-storage:
networks:
bw-universe:
name: bw-universe
ipam:
driver: default
config:
- subnet: 10.20.30.0/24
bw-services:
name: bw-services