All Downloads are FREE. Search and download functionalities are using the official Maven repository.

playground.server.admin.v1.routing.rules Maven / Gradle / Ivy

Go to download

Middleware library based on Vert.x to build advanced JSON/REST communication servers

There is a newer version: 2.1.15
Show newest version
{
  "/playground/auth/test": {
    "oAuthId": "demo-config",
    "url": "https://sandbox.apis-int.post.ch/resource-server/v1/users"
  },
  "/playground/service/unavailable/(.*)": {
    "description": "Respond every request with status code 503",
    "path": "/playground/server/return-with-status-code/503"
  },
  "/playground/cb/1/(.*)": {
    "description": "CircuitBreaker Test",
    "metricName": "cb_1",
    "url": "http://localhost:1234/playground/server/tests/exp/$1"
  },
  "/playground/cb/2/(.*)": {
    "description": "CircuitBreaker Test",
    "metricName": "cb_2",
    "url": "http://localhost:1234/playground/server/tests/exp/$1"
  },
  "/playground/cb/3/(.*)": {
    "description": "CircuitBreaker Test",
    "metricName": "cb_3",
    "url": "http://localhost:1234/playground/server/tests/exp/$1"
  },
  "/playground/cb/4/(.*)": {
    "description": "CircuitBreaker Test",
    "metricName": "cb_4",
    "url": "http://localhost:1234/playground/server/tests/exp/$1"
  },
  "/playground/": {
    "description": "Home Page",
    "metricName": "home_page",
    "path": "/playground/server/pages/index.html",
    "storage": "main"
  },
  "/playground/([^/]*\\\\.html)": {
    "description": "Pages",
    "path": "/playground/server/pages/$1",
    "storage": "main"
  },
  "/playground/css/(.*)": {
    "description": "Pages CSS",
    "path": "/playground/server/pages/css/$1",
    "storage": "main"
  },
  "/playground/js/(.*)": {
    "description": "Pages JS",
    "path": "/playground/server/pages/js/$1",
    "storage": "main"
  },
  "/playground/img/(.*)": {
    "description": "Pages Images",
    "path": "/playground/server/pages/img/$1",
    "storage": "main"
  },
  "/playground/server/storage/empty": {
    "description": "Placeholder to make this folder appear when browsing",
    "path": "/playground/server/storage/empty",
    "storage": "main"
  },
  "/playground/server/storage(.*)": {
    "path": "/playground$1",
    "storage": "main"
  },
  "/playground/server/queuecircuitbreaker/circuit/(.*)": {
    "description": "CircuitBreaker API",
    "url": "http://localhost:7013/playground/server/queuecircuitbreaker/circuit/$1"
  },
  "/playground/server/queuing/(.*)": {
    "description": "Redisques API",
    "metricName": "server-queuing-api",
    "url": "http://localhost:7015/queuing/$1"
  },
  "/playground/server/redisques/(.*)": {
    "description": "Redisques API",
    "url": "http://localhost:7015/queuing/$1"
  },
  "/null/(.*)": {
    "description": "Default Nirvana path, any resource routed to this destination is discarded immediately after any registered listener hooks are notified"
  },
  "/(.*)": {
    "metricName": "resource_storage",
    "description": "Resource Storage",
    "path": "/$1",
    "storage": "main"
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy