mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
Some checks are pending
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/all-in-one/Dockerfile, all-in-one) (push) Waiting to run
Automatic tests (DEV) / build-containers (src/scheduler/Dockerfile, scheduler) (push) Waiting to run
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-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) / push-dev (map[from:scheduler to:bunkerweb-scheduler]) (push) Blocked by required conditions
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-9, rpm, x86_64, -, 1., 9) (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-8, rpm, x86_64, -, 1., 8) (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
79 lines
1.6 KiB
YAML
79 lines
1.6 KiB
YAML
x-env: &env
|
|
API_WHITELIST_IP: "127.0.0.0/8 10.20.30.0/24"
|
|
# proxy protocol settings
|
|
USE_PROXY_PROTOCOL: "yes"
|
|
USE_REAL_IP: "yes"
|
|
REAL_IP_FROM: "10.10.10.0/24"
|
|
REAL_IP_HEADER: "proxy_protocol"
|
|
|
|
services:
|
|
bunkerweb:
|
|
image: bunkerity/bunkerweb:1.6.10
|
|
container_name: bunkerweb
|
|
environment:
|
|
<<: *env
|
|
restart: "unless-stopped"
|
|
networks:
|
|
- net-proxy
|
|
- 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:
|
|
<<: *env
|
|
BUNKERWEB_INSTANCES: "bunkerweb"
|
|
SERVER_NAME: "www.example.com" # replace with your domains
|
|
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: "/"
|
|
REVERSE_PROXY_HOST: "http://myapp:8080"
|
|
restart: "unless-stopped"
|
|
networks:
|
|
- bw-universe
|
|
|
|
myproxy:
|
|
image: haproxy:3.1-alpine
|
|
depends_on:
|
|
- bunkerweb
|
|
ports:
|
|
- "80:8080/tcp"
|
|
- "443:8443/tcp"
|
|
- "443:8443/udp" # for QUIC
|
|
volumes:
|
|
- ./haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg:ro
|
|
networks:
|
|
- net-proxy
|
|
|
|
myapp:
|
|
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
|
|
net-proxy:
|
|
ipam:
|
|
driver: default
|
|
config:
|
|
- subnet: 10.10.10.0/24
|