[READ ONLY MIRROR] Envoy REST/proto API definitions and documentation. (grpc依赖)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Shriram Rajagopalan f078a097ce Add note about missing filters (#191) 7 years ago
..
BUILD Remove unused imports. (#179) 7 years ago
README.md Add note about missing filters (#191) 7 years ago
http_connection_manager.proto Remove unused imports. (#179) 7 years ago
mongo_proxy.proto api/filter: add tcp_proxy/rate_limit/mongo_proxy filter config protos. (#51) 8 years ago
rate_limit.proto api/filter: add tcp_proxy/rate_limit/mongo_proxy filter config protos. (#51) 8 years ago
tcp_proxy.proto api/filter: add tcp_proxy/rate_limit/mongo_proxy filter config protos. (#51) 8 years ago

README.md

NOTE

The list of filters here is incomplete. There are no proto specifications for Fault filter, Redis filter, CORS filter, etc. These specifications will be added in the near future. In the interim, you can still supply plain JSON configuration objects for these missing filters by setting the "deprecated_v1" field to true in the filter's configuration. For example,

{ 
 "name": "envoy.rate_limit",
  "config": { 
    "deprecated_v1": true,
     "value": { 
       "domain": "some_domain",
        "timeout_ms": 500 
       }
    }
 }