Skip to content

Commit e238852

Browse files
authored
Merge pull request #17 from ituacm/main
Change endpoints
2 parents 60e1896 + c419c61 commit e238852

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docker-compose.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -75,18 +75,18 @@ services:
7575

7676
- traefik.http.services.${STACK_NAME?Variable not set}-backend.loadbalancer.server.port=80
7777

78-
- traefik.http.routers.${STACK_NAME?Variable not set}-backend-http.rule=(Host(`${DOMAIN?Variable not set}`) || Host(`www.${DOMAIN?Variable not set}`)) && (PathPrefix(`/api`) || PathPrefix(`/docs`) || PathPrefix(`/redoc`))
78+
- traefik.http.routers.${STACK_NAME?Variable not set}-backend-http.rule=(Host(`api.${DOMAIN?Variable not set}`) || Host(`www.api.${DOMAIN?Variable not set}`)) && (PathPrefix(`/api`) || PathPrefix(`/docs`) || PathPrefix(`/redoc`))
7979
- traefik.http.routers.${STACK_NAME?Variable not set}-backend-http.entrypoints=http
8080

81-
- traefik.http.routers.${STACK_NAME?Variable not set}-backend-https.rule=(Host(`${DOMAIN?Variable not set}`) || Host(`www.${DOMAIN?Variable not set}`)) && (PathPrefix(`/api`) || PathPrefix(`/docs`) || PathPrefix(`/redoc`))
81+
- traefik.http.routers.${STACK_NAME?Variable not set}-backend-https.rule=(Host(api.`${DOMAIN?Variable not set}`) || Host(`www.api.${DOMAIN?Variable not set}`)) && (PathPrefix(`/api`) || PathPrefix(`/docs`) || PathPrefix(`/redoc`))
8282
- traefik.http.routers.${STACK_NAME?Variable not set}-backend-https.entrypoints=https
8383
- traefik.http.routers.${STACK_NAME?Variable not set}-backend-https.tls=true
8484
- traefik.http.routers.${STACK_NAME?Variable not set}-backend-https.tls.certresolver=le
8585

8686
# Define Traefik Middleware to handle domain with and without "www" to redirect to only one
87-
- traefik.http.middlewares.${STACK_NAME?Variable not set}-www-redirect.redirectregex.regex=^http(s)?://www.(${DOMAIN?Variable not set})/(.*)
87+
- traefik.http.middlewares.${STACK_NAME?Variable not set}-www-redirect.redirectregex.regex=^http(s)?://www.api.(${DOMAIN?Variable not set})/(.*)
8888
# Redirect a domain with www to non-www
89-
- traefik.http.middlewares.${STACK_NAME?Variable not set}-www-redirect.redirectregex.replacement=http$${1}://${DOMAIN?Variable not set}/$${3}
89+
- traefik.http.middlewares.${STACK_NAME?Variable not set}-www-redirect.redirectregex.replacement=http$${1}://api.${DOMAIN?Variable not set}/$${3}
9090

9191
# Enable www redirection for HTTP and HTTPS
9292
- traefik.http.routers.${STACK_NAME?Variable not set}-backend-http.middlewares=https-redirect,${STACK_NAME?Variable not set}-www-redirect
@@ -101,7 +101,7 @@ services:
101101
build:
102102
context: ./frontend
103103
args:
104-
- VITE_API_URL=https://${DOMAIN?Variable not set}
104+
- VITE_API_URL=https://admin.${DOMAIN?Variable not set}
105105
- NODE_ENV=production
106106
labels:
107107
- traefik.enable=true
@@ -110,10 +110,10 @@ services:
110110

111111
- traefik.http.services.${STACK_NAME?Variable not set}-frontend.loadbalancer.server.port=80
112112

113-
- traefik.http.routers.${STACK_NAME?Variable not set}-frontend-http.rule=Host(`${DOMAIN?Variable not set}`) || Host(`www.${DOMAIN?Variable not set}`)
113+
- traefik.http.routers.${STACK_NAME?Variable not set}-frontend-http.rule=Host(`admin.${DOMAIN?Variable not set}`) || Host(`www.admin.${DOMAIN?Variable not set}`)
114114
- traefik.http.routers.${STACK_NAME?Variable not set}-frontend-http.entrypoints=http
115115

116-
- traefik.http.routers.${STACK_NAME?Variable not set}-frontend-https.rule=Host(`${DOMAIN?Variable not set}`) || Host(`www.${DOMAIN?Variable not set}`)
116+
- traefik.http.routers.${STACK_NAME?Variable not set}-frontend-https.rule=Host(`admin.${DOMAIN?Variable not set}`) || Host(`www.admin.${DOMAIN?Variable not set}`)
117117
- traefik.http.routers.${STACK_NAME?Variable not set}-frontend-https.entrypoints=https
118118
- traefik.http.routers.${STACK_NAME?Variable not set}-frontend-https.tls=true
119119
- traefik.http.routers.${STACK_NAME?Variable not set}-frontend-https.tls.certresolver=le

0 commit comments

Comments
 (0)