nginx proxy_cache配置

来源:互联网 发布:网络彩票2018重启时间 编辑:程序博客网 时间:2024/05/05 09:43

http{

proxy_cache_path /opt/nginxcache/livets levels=1:2 keys_zone=livecontent:50m inactive=1d max_size=10g;

}

    location / {
        root /opt/hls_live/web;
        proxy_cache livecontent;
        proxy_cache_valid 200 404 403 10m;
        proxy_cache_key $uri$is_args$args;
        proxy_next_upstream http_500 http_502 http_503 http_504 timeout error invalid_header;
        proxy_pass http://hls_server;
    }

0 0
原创粉丝点击