Skip to content

Commit

Permalink
fix: change tls from 1 to true
Browse files Browse the repository at this point in the history
  • Loading branch information
geoje committed Dec 5, 2024
1 parent c857409 commit 5ecc968
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions server/docker/docker-compose-be.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ services:
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/actuator/health"]
labels:
traefik.enable: 1
traefik.enable: "true"
traefik.http.services.mapletool-be.loadbalancer.server.port: 8080
traefik.http.routers.mapletool-be.rule: Host(`maple.ygh.kr`) && PathPrefix(`/api`)
traefik.http.routers.mapletool-be.entrypoints: websecure
traefik.http.routers.mapletool-be.tls: 1
traefik.http.routers.mapletool-be.tls: "true"
traefik.http.routers.mapletool-be.tls.certresolver: letsencrypt
volumes:
- ../../backend/build/libs:/opt:ro
Expand Down
4 changes: 2 additions & 2 deletions server/docker/docker-compose-fe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ services:
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost"]
labels:
traefik.enable: 1
traefik.enable: "true"
traefik.http.services.mapletool-fe.loadbalancer.server.port: 80
traefik.http.routers.mapletool-fe.rule: Host(`maple.ygh.kr`)
traefik.http.routers.mapletool-fe.entrypoints: websecure
traefik.http.routers.mapletool-fe.tls: 1
traefik.http.routers.mapletool-fe.tls: "true"
traefik.http.routers.mapletool-fe.tls.certresolver: letsencrypt
volumes:
- ../../frontend/dist:/usr/share/nginx/html:ro
Expand Down

0 comments on commit 5ecc968

Please sign in to comment.