Skip to content

Commit

Permalink
Updating agile guide subdomain requests to redirect and rewrite
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-gade authored and apburnes committed Nov 13, 2023
1 parent d67bc8d commit 5b9fbe1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions templates/_federalist-redirects.njk
Original file line number Diff line number Diff line change
Expand Up @@ -533,3 +533,13 @@ server {
server_name design.login.gov;
return 301 https://www.login.gov/;
}

# agile.18f.gov to guides.18f.gov/agile/
server {
listen {{ PORT }};
server_name agile.18f.gov;

location / {
return 301 https://guides.18f.gov/agile$uri;
}
}

0 comments on commit 5b9fbe1

Please sign in to comment.