mirror-cache 0.0.3

A customizable reverse proxy with cache
port: 9000
metrics_port: 9001
# log level: error / warn / info / debug / trace, default level is info
log_level: debug


redis:
  url: redis://localhost

   
sled:
  metadata_path: cache/sled_metadata

rules:
  - name: Debug
    path: "debug/"
    upstream: "http://localhost:5000/"
    policy: "policy_lru"
 
policies:
  - name: policy_lru
    type: LRU
    metadata_db: sled
    size: 10
    path: "cache/lru"