Add Bao Galaxy landing page and compose config

This commit is contained in:
2026-06-16 17:27:38 +02:00
commit f7353ed111
2 changed files with 478 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
name: bao-landing
services:
web:
image: nginx:alpine
restart: unless-stopped
deploy:
resources:
limits:
memory: 64M
reservations:
memory: 16M
volumes:
- ./html:/usr/share/nginx/html:ro
networks:
- proxy
labels:
- "traefik.enable=true"
- "traefik.http.routers.bao-landing.rule=Host(`noveria.net`)"
- "traefik.http.routers.bao-landing.tls=true"
- "traefik.http.routers.bao-landing.tls.certresolver=letsencrypt"
- "traefik.http.services.bao-landing.loadbalancer.server.port=80"
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
networks:
proxy:
external: true