tiles_cache.conf.j2 520 B

123456789101112131415
  1. {% if 'cache_locations' in nginx_tiles_cache %}
  2. {% for cache in nginx_tiles_cache.cache_locations %}
  3. proxy_cache_path {{cache.path}} levels=1:2 keys_zone={{cache.name}}:10m max_size={{cache.max_size}} inactive=365d;
  4. # proxy_temp_path {{cache.path}}/tmp;
  5. {% endfor %}
  6. {% endif %}
  7. {% if 'upstreams' in nginx_tiles_cache %}
  8. {% for upstream in nginx_tiles_cache.upstreams %}
  9. upstream {{upstream.name}} {
  10. {% for server in upstream.servers %}
  11. server {{server}};
  12. {% endfor %}
  13. }
  14. {% endfor %}
  15. {% endif %}