fix: wh catchall for all

This commit is contained in:
Andras Bacsai 2022-11-04 12:11:04 +01:00
parent d66bae32d3
commit 6def46544c

View File

@ -173,14 +173,14 @@ export async function proxyConfiguration(request: FastifyRequest<OnlyId>, remote
const { id = null } = request.params;
const settings = await prisma.setting.findFirst();
if (settings.isTraefikUsed && settings.proxyDefaultRedirect) {
traefik.http.routers['catchall'] = {
traefik.http.routers['catchall-http'] = {
entrypoints: ["web"],
rule: "HostRegexp(`{catchall:.*}`)",
service: "noop",
priority: 1,
middlewares: ["redirect-regexp"]
}
traefik.http.routers['catchall'] = {
traefik.http.routers['catchall-https'] = {
entrypoints: ["websecure"],
rule: "HostRegexp(`{catchall:.*}`)",
service: "noop",