ini MODX Cloud中的Web规则(nginx conf),用于CDN,代理缓存资产和statcache

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ini MODX Cloud中的Web规则(nginx conf),用于CDN,代理缓存资产和statcache相关的知识,希望对你有一定的参考价值。

# statcache bits
set $cache_prefix 'statcache';
if ($http_user_agent = 'MODX RegenCache') {
    set $cache_prefix 'no cache';
}
# CORS for CDN pull zone and expires directives
location ~* \.(?:ico|css|js|jpe?g|png|gif|svg|pdf|mov|mp4|mp3|woff|woff2|ttf|ttc|otf|eot|font.css)$ {
    expires 7d;
    add_header Access-Control-Allow-Origin "*";   
    add_header Pragma public;
    add_header Cache-Control "public";
    gzip_vary on;
}
# modified modx rewrite for statcache
location / {
    try_files /$cache_prefix$uri~index.html /$cache_prefix$uri $uri $uri/ @modx-rewrite;
}

以上是关于ini MODX Cloud中的Web规则(nginx conf),用于CDN,代理缓存资产和statcache的主要内容,如果未能解决你的问题,请参考以下文章

ini MODX Revolution - nginx.conf

ini MODX Revolution - nginx.conf

ini MODX Babel重写了nginx

Spring Cloud用户服务

将第三方web应用程序作为模块嵌入到MODx Evo中

ModX 无法查看新上下文