Skip to content

Commit

Permalink
feat: Add identityequitystudy.gsa.gov redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
apburnes committed May 13, 2024
1 parent 5b83744 commit ffa282e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,4 @@ services:
- app:engineering.18f.gov
- app:product-guide.18f.gov
- app:methods.18f.gov
- app:identityequitystudy.gsa.gov
10 changes: 10 additions & 0 deletions templates/_federalist-redirects.njk
Original file line number Diff line number Diff line change
Expand Up @@ -652,3 +652,13 @@ server {
return 301 https://guides.18f.gov/methods$uri;
}
}

# identityequitystudy.gsa.gov to gsa.gov...
server {
listen {{ PORT }};
server_name identityequitystudy.gsa.gov;

location / {
return 301 https://www.gsa.gov/governmentwide-initiatives/diversity-equity-inclusion-and-accessibility/equity-study-on-remote-identity-proofing;
}
}
1 change: 1 addition & 0 deletions templates/manifest-prod.yml.njk
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ routes:
- route: govconnect.18f.gov
- route: portfolios.18f.gov
- route: fac.gov
- route: identityequitystudy.gsa.gov
{% for page in PAGE_CONFIGS -%}
- route: {{ page.to }}.{{ page.toDomain }}
{% endfor -%}

0 comments on commit ffa282e

Please sign in to comment.