{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft": "Warning",
      "Microsoft.Hosting.Lifetime": "Information"
    }
  },
  "AllowedHosts": "*",
  "ReverseProxy": {
    "Routes": {
      "qa" : {
        "ClusterId": "qa-api",
        "Match": {
          "Path": "/api/{**remainder}",
          "Hosts": ["*.yourcausegrantsqa.com", "localhost:*"]
        }
      },
      "uat" : {
        "ClusterId": "uat-api",
        "Match": {
          "Path": "/api/{**remainder}",
          "Hosts": ["*.yourcausegrantsuat.com"]
        }
      },
      "prod" : {
        "ClusterId": "prod-api",
        "Match": {
          "Path": "/api/{**remainder}",
          "Hosts": ["*.yourcausegrants.com"]
        }
      },
      "virus-scan": {
        "ClusterId": "virus-scan",
        "Match": {
          "Path": "/filescan/{**remainder}"
        }
      }
    },
    "Clusters": {
      "qa-api": {
        "Destinations": {
          "qa-api/1": {
            "Address": "https://api-secure.yourcausegrantsqa.com"
          }
        }
      },
      "uat-api": {
        "Destinations": {
          "uat-api/1": {
            "Address": "https://api-secure.yourcausegrantsuat.com"
          }
        }
      },
      "prod-api": {
        "Destinations": {
          "prod-api/1": {
            "Address": "https://api-secure.yourcausegrants.com"
          }
        }
      },
      "virus-scan": {
        "Destinations": {
          "virus-scan/1": {
            "Address": "https://yc-prod.azurefd.net"
          }
        }
      }
    }
  }
}