```[ { "id": "ccservice", "upstream": { ...
# talk-oathkeeper
s
Copy code
[
  {
    "id": "ccservice",
    "upstream": {
      "preserve_host": true,
      "url": "<http://127.0.0.1:9946/cc/v1/>",
      "strip_path": "/dd/v1/"
    },
    "match": {
      "url": "<http://127.0.0.1:4455/dd/v1/keys>",
      "methods": [
        "GET"
      ]
    },
    "authenticators": [{
      "handler": "bearer_token"
    }],
    "authorizer": { "handler": "allow" },
    "mutators": [
      {
        "handler": "header",
        "config": {
          "headers": {
            "X-User": "{{ print .Subject }}"
          }
        }
      }
    ],
    "errors": []
  }

]