diff --git a/gemini/EN/install.gmi b/gemini/EN/install.gmi
index 8efaae72..803bfa70 100644
--- a/gemini/EN/install.gmi
+++ b/gemini/EN/install.gmi
@@ -126,6 +126,16 @@ And paste the following:
proxy_buffering on;
proxy_cache my_cache;
proxy_cache_use_stale error timeout http_500 http_502 http_503 http_504;
+ location ~ ^/icons/(.*)/(like|repeat|calendar)(.*).png {
+ expires epoch;
+ proxy_no_cache 1;
+ proxy_pass http://localhost:7156;
+ }
+ location ~ ^/icons/(like|repeat|calendar)(.*).png {
+ expires epoch;
+ proxy_no_cache 1;
+ proxy_pass http://localhost:7156;
+ }
proxy_pass http://localhost:7156;
}
}
diff --git a/website/EN/index.html b/website/EN/index.html
index 3571114a..32027f22 100644
--- a/website/EN/index.html
+++ b/website/EN/index.html
@@ -1406,6 +1406,16 @@
proxy_buffering on;
proxy_cache my_cache;
proxy_cache_use_stale error timeout http_500 http_502 http_503 http_504;
+ location ~ ^/icons/(.*)/(like|repeat|calendar)(.*).png {
+ expires epoch;
+ proxy_no_cache 1;
+ proxy_pass http://localhost:7156;
+ }
+ location ~ ^/icons/(like|repeat|calendar)(.*).png {
+ expires epoch;
+ proxy_no_cache 1;
+ proxy_pass http://localhost:7156;
+ }
proxy_pass http://localhost:7156;
}
}