From a5a56b6f70bd5b445c3d10d0c5a99011a8bcdd1d Mon Sep 17 00:00:00 2001 From: LUXEY Adrien Date: Mon, 28 Dec 2020 12:04:08 +0100 Subject: [PATCH] wrote a redirection to deuxfleurs.fr in Treafik config's comments --- app/deployment/web_static.hcl | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/deployment/web_static.hcl b/app/deployment/web_static.hcl index a02d48b..01de23e 100644 --- a/app/deployment/web_static.hcl +++ b/app/deployment/web_static.hcl @@ -38,8 +38,13 @@ EOH "traefik.enable=true", "traefik.frontend.entryPoints=https,http", "traefik.frontend.rule=Host:deuxfleurs.fr,www.deuxfleurs.fr,deuxfleurs.org,www.deuxfleurs.org;PathPrefix:/", - # ideally we would have a rewrite regex: ^https?://(www\.deuxfleurs\.fr|deuxfleurs\.org|www\.deuxfleurs\.fr)(.*)$ "traefik.frontend.priority=10" + # Ideally we would have a rewrite regex like this https://regex101.com/r/WHrABU/1 + # See how it does not handle "http://deuxfleurs.fr/"? Not a big deal since HTTPS is redirected somewhere else + #"traefik.frontend.redirect.regex=^https?://(www\.deuxfleurs\.fr|deuxfleurs\.org|www\.deuxfleurs\.org)(.*)$", + #"traefik.frontend.redirect.replacement=https://deuxfleurs.fr/$${2}", + # Only set permanent redirect when it is guaranteed to work + #"traefik.frontend.redirect.permanent=true", ] port = "deuxfleurs_port" address_mode = "host"