GOV.UK Router is an HTTP reverse proxy built on top of triemux. It
loads a routing table into memory from a PostgreSQL database and:
- forwards requests to backend application servers according to the path in the request URL
- serves HTTP
301and302redirects for moved content and short URLs - serves
410 Goneresponses for resources that no longer exist
Router loads its routing table from Content Store's PostgreSQL database (or optionally from a flat file). It uses a trie data structure for fast path lookups, maintaining two separate tries: one for exact path matches and one for prefix matches. When a request comes in, Router first checks for an exact match, then falls back to the longest prefix match.
Router can reload routes without restarting, either automatically via PostgreSQL's LISTEN/NOTIFY, on a periodic schedule, or manually via the API.
Routes can be one of two types:
- exact: The path must match exactly (e.g.,
/governmentmatches only/government) - prefix: The path prefix must match (e.g.,
/governmentmatches/government,/government/policies, etc.)
Each matched route is handled by one of three handler types:
- backend: Reverse proxies the request to a backend application server
- redirect: Returns an HTTP 301 redirect to a new location
- gone: Returns an HTTP 410 Gone response for deleted content
Router runs two HTTP servers: a public server (default :8080) for handling requests, and an API server (default :8081) for admin operations like reloading routes and exposing metrics.
For details on the route data structure and handler configuration, see docs/data-structure.md.
Router is configured via environment variables:
| Variable | Default | Description |
|---|---|---|
ROUTER_PUBADDR |
:8080 |
Public request server address |
ROUTER_APIADDR |
:8081 |
API/admin server address |
ROUTER_BACKEND_CONNECT_TIMEOUT |
1s |
Backend connection timeout |
ROUTER_BACKEND_HEADER_TIMEOUT |
20s |
Backend response header timeout |
ROUTER_FRONTEND_READ_TIMEOUT |
60s |
Client request read timeout |
ROUTER_FRONTEND_WRITE_TIMEOUT |
60s |
Client response write timeout |
ROUTER_ROUTE_RELOAD_INTERVAL |
1m |
Periodic route reload interval |
ROUTER_TLS_SKIP_VERIFY |
unset | Skip TLS verification |
ROUTER_DEBUG |
unset | Enable debug logging |
ROUTER_ERROR_LOG |
STDERR |
Error log file path |
ROUTER_ROUTES_FILE |
unset | Load routes from JSONL file instead of PostgreSQL |
CONTENT_STORE_DATABASE_URL |
unset | PostgreSQL connection string |
SENTRY_DSN |
unset | Sentry error tracking DSN |
SENTRY_ENVIRONMENT |
unset | Sentry environment tag |
Backend applications are configured with BACKEND_URL_<backend_id> environment variables:
export BACKEND_URL_frontend=http://localhost:3000
export BACKEND_URL_publisher=http://localhost:3001Routes reference these backends by their ID (e.g., "frontend", "publisher").
When ROUTER_ROUTES_FILE is set, Router will load routes from the specified JSONL file (one JSON object per line).
Router will also no longer load routes from PostgreSQL, and periodic route updates are disabled.
Example file:
{"BackendID":"frontend","IncomingPath":"/government","RouteType":"prefix","RedirectTo":null,"SegmentsMode":null,"SchemaName":null,"Details":null}
{"BackendID":null,"IncomingPath":"/old-page","RouteType":"exact","RedirectTo":"/new-page","SegmentsMode":"ignore","SchemaName":"redirect","Details":null}
{"BackendID":null,"IncomingPath":"/deleted","RouteType":"exact","RedirectTo":null,"SegmentsMode":null,"SchemaName":"gone","Details":null}You can export routes from PostgreSQL to a JSONL file using:
ROUTER_ROUTES_FILE=/path/to/routes.jsonl ./router -export-routesThis can be used to continue serving routes when Content Store's database is down for maintenance.
Recommended reading: How to Write Go Code
Checks run automatically on GitHub on PR and push. For faster feedback, you can run the tests locally.
The lint check uses golangci-lint, which you can install via Homebrew or your favourite package manager:
brew install golangci-lintYou can run all tests (some of which need Docker installed) by running:
make test
You can also run just the unit tests or just the integration tests, using the
unit_tests and integration_tests targets. The unit tests don't need Docker.
The trie and triemux packages have unit tests. To run these on their own:
go test -bench=. ./trie ./triemux
The integration tests need Docker in order to run PostgreSQL. They are intended to cover Router's overall request handling, error reporting and performance.
You can use --ginkgo.focus <partial regex> to run a subset of the integration
tests, for example:
go test ./integration_tests -v --ginkgo.focus 'redirect should preserve the query string'
To see debug messages when running tests, set both the ROUTER_DEBUG and
ROUTER_DEBUG_TESTS environment variables:
ROUTER_DEBUG=1 ROUTER_DEBUG_TESTS=1 make testThis project uses Go Modules to vendor its dependencies. To update the dependencies:
-
Update all the dependencies, including test dependencies, in your working copy:
make update_deps
-
Check for any errors and commit.
git commit -- go.{mod,sum} vendor -
Run the Router test suite. If you need to fix a failing test, keep your changes in separate commits to the
go get/go modcommit. -
Run the tests for all dependencies:
go test all- If there are failures, look into each one and determine whether it needs fixing.
- If anything under
vendor/needs changing then either raise a PR with the upstream project or revert to a set of versions that work together. Onlygo getandgo modshould touch files invendor/.
-
Raise a PR.
- Data structure
- Original thinking behind the router
- Example of adding a metric using the Go prometheus client library
GOV.UK Platform Engineering team looks after this repo. If you're inside GDS, you can find us in #govuk-platform-engineering or view our kanban board.