diff --git a/docker-compose.yml b/docker-compose.yml index 31f0191..6af5c0c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -92,3 +92,7 @@ services: - app:content-guide.18f.gov - app:derisking-guide.18f.gov - app:ux-guide.18f.gov + - app:accessibility.18f.gov + - app:eng-hiring.18f.gov + - app:engineering.18f.gov + - app:product-guide.18f.gov diff --git a/templates/_federalist-redirects.njk b/templates/_federalist-redirects.njk index 63ccab9..840c1f4 100644 --- a/templates/_federalist-redirects.njk +++ b/templates/_federalist-redirects.njk @@ -534,6 +534,16 @@ server { return 301 https://www.login.gov/; } +# accessibility.18f.gov to guides.18f.gov/accessibility +server { + listen {{ PORT }}; + server_name accessibility.18f.gov; + + location / { + return 301 https://guides.18f.gov/accessibility$uri; + } +} + # agile.18f.gov to guides.18f.gov/agile/ server { listen {{ PORT }}; @@ -574,6 +584,36 @@ server { } } +# eng-hiring.18f.gov to guides.18f.gov/eng-hiring +server { + listen {{ PORT }}; + server_name eng-hiring.18f.gov; + + location / { + return 301 https://guides.18f.gov/eng-hiring$uri; + } +} + +# engineering.18f.gov to guides.18f.gov/engineering +server { + listen {{ PORT }}; + server_name engineering.18f.gov; + + location / { + return 301 https://guides.18f.gov/engineering$uri; + } +} + +# product-guide.18f.gov to guides.18f.gov/product +server { + listen {{ PORT }}; + server_name product-guide.18f.gov; + + location / { + return 301 https://guides.18f.gov/product$uri; + } +} + # ux-guide.18f.gov to guides.18f.gov/ux-guide/ server { listen {{ PORT }};