fix(lobe chat): add traefik labels to make app exposable

This commit is contained in:
Agustin Carrasco 2024-01-06 00:10:03 -03:00
parent 4b177a04f8
commit 841523506f

View File

@ -13,3 +13,28 @@ services:
restart: unless-stopped
networks:
- tipi_main_network
labels:
# Main
traefik.enable: true
traefik.http.middlewares.lobe-chat-web-redirect.redirectscheme.scheme: https
traefik.http.services.lobe-chat.loadbalancer.server.port: 16662
# Web
traefik.http.routers.lobe-chat-insecure.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.lobe-chat-insecure.entrypoints: web
traefik.http.routers.lobe-chat-insecure.service: lobe-chat
traefik.http.routers.lobe-chat-insecure.middlewares: lobe-chat-web-redirect
# Websecure
traefik.http.routers.lobe-chat.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.lobe-chat.entrypoints: websecure
traefik.http.routers.lobe-chat.service: lobe-chat
traefik.http.routers.lobe-chat.tls.certresolver: myresolver
# Local domain
traefik.http.routers.lobe-chat-local-insecure.rule: Host(`lobe-chat.${LOCAL_DOMAIN}`)
traefik.http.routers.lobe-chat-local-insecure.entrypoints: web
traefik.http.routers.lobe-chat-local-insecure.service: lobe-chat
traefik.http.routers.lobe-chat-local-insecure.middlewares: lobe-chat-web-redirect
# Local domain secure
traefik.http.routers.lobe-chat-local.rule: Host(`lobe-chat.${LOCAL_DOMAIN}`)
traefik.http.routers.lobe-chat-local.entrypoints: websecure
traefik.http.routers.lobe-chat-local.service: lobe-chat
traefik.http.routers.lobe-chat-local.tls: true