Skip to content
Snippets Groups Projects
Verified Commit 96b82778 authored by Nicolas Lenz's avatar Nicolas Lenz :snowflake:
Browse files

feat(sapphire): add redirect for recipes domain

parent 3a0aec25
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ Notes:
"*.pages" # GitLab pages
"days" "matrix" "lists" "diagrams" "events" "gallery" "pad"
"mock" "bytegeschichten" "git" "registry" "cloud" "flix" "shelf"
"news" "dashboard" "literature" "proxy"
"news" "dashboard" "literature" "proxy" "recipes"
"data" "auth" "gca4hpx" "vault" "nixcache" "documents" "notify"
"forum" "lab" # deprecated, kept for redirects
......
......@@ -94,7 +94,7 @@
wouldn't know which domains to get certificates for.
*/
deprecated = {
rule = "Host(`lab.eisfunke.com`) || Host(`forum.eisfunke.com`)";
rule = "Host(`lab.eisfunke.com`) || Host(`forum.eisfunke.com`) || Host(`recipes.eisfunke.com`)";
entrypoints = [ "websecure" ];
tls.certResolver = "tls";
service = "unavailable";
......@@ -102,6 +102,7 @@
"forumRedirect@file"
"labFuProRedirect@file"
"labRedirect@file"
"recipesRedirect@file"
];
};
proxy-dashboard = {
......@@ -176,6 +177,11 @@
regex = "^https://lab.eisfunke.com/.*";
replacement = "https://www.eisfunke.com/lab/index.html";
};
recipesRedirect.redirectRegex = {
permanent = true;
regex = "^https://recipes.eisfunke.com/.*";
replacement = "https://www.eisfunke.com/recipes/index.html";
};
};
services = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment