Skip to content

Use nuster As HTTP Cache Server

Stefan de Konink edited this page Apr 21, 2020 · 3 revisions

As HTTP cache server

global
    nuster cache on data-size 200m dir /var/tmp/nuster
frontend fe
    bind *:8080
    mode http
    default_backend be
backend be
    mode http
    nuster cache on
    nuster rule all memory on disk on ttl 1d
    server s1 127.0.0.1:8081
Clone this wiki locally