You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docker-compose.yml
+7-7
Original file line number
Diff line number
Diff line change
@@ -75,18 +75,18 @@ services:
75
75
76
76
- traefik.http.services.${STACK_NAME?Variable not set}-backend.loadbalancer.server.port=80
77
77
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`))
79
79
- traefik.http.routers.${STACK_NAME?Variable not set}-backend-http.entrypoints=http
80
80
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`))
82
82
- traefik.http.routers.${STACK_NAME?Variable not set}-backend-https.entrypoints=https
83
83
- traefik.http.routers.${STACK_NAME?Variable not set}-backend-https.tls=true
84
84
- traefik.http.routers.${STACK_NAME?Variable not set}-backend-https.tls.certresolver=le
85
85
86
86
# 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})/(.*)
88
88
# 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}
90
90
91
91
# Enable www redirection for HTTP and HTTPS
92
92
- 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:
101
101
build:
102
102
context: ./frontend
103
103
args:
104
-
- VITE_API_URL=https://${DOMAIN?Variable not set}
104
+
- VITE_API_URL=https://admin.${DOMAIN?Variable not set}
105
105
- NODE_ENV=production
106
106
labels:
107
107
- traefik.enable=true
@@ -110,10 +110,10 @@ services:
110
110
111
111
- traefik.http.services.${STACK_NAME?Variable not set}-frontend.loadbalancer.server.port=80
112
112
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}`)
114
114
- traefik.http.routers.${STACK_NAME?Variable not set}-frontend-http.entrypoints=http
115
115
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}`)
117
117
- traefik.http.routers.${STACK_NAME?Variable not set}-frontend-https.entrypoints=https
118
118
- traefik.http.routers.${STACK_NAME?Variable not set}-frontend-https.tls=true
119
119
- traefik.http.routers.${STACK_NAME?Variable not set}-frontend-https.tls.certresolver=le
0 commit comments