📜  如何在 haproxy 中缓存 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:37.207000             🧑  作者: Mango

代码示例1
global
    nuster cache on data-size 200m
frontend fe
    bind *:8080
    mode http
    default_backend be
backend be
    mode http
    nuster cache on
    nuster rule all
    server s1 127.0.0.1:8081