Skip to content
Discussion options

You must be logged in to vote

It looks like the problem is the way Routes are set in the settings. Routes used to be array but it's dictionary now. Removing brackets from the Routes should fix the problem.

- "Routes": [
+ "Routes": 
      {
        "Blog": {
          "RouteId": "blog",
          "ClusterId": "blog",
          "Match": {
            "Path": "/blaat/{**remainder}",
            "Hosts": [ "https://localhost:7259" ]
          }
        },
        "PRM": {
          "RouteId": "PRM",
          "ClusterId": "PRM",
          "Match": {
            "Path": "/test/{**remainder}",
            "Hosts": [ "https://localhost:7259" ]
          }
        }
      }
-    ],
+   ,

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@Tealons
Comment options

Answer selected by Tealons
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants