summaryrefslogtreecommitdiffstats
path: root/ansible
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-01-12 13:28:05 -0500
committerDessalines <tyhou13@gmx.com>2020-01-12 13:28:05 -0500
commite603b52a5ba469dde2db85a4b996536c085f02bf (patch)
treea16dbe67369327f482346463dae04a5972c064ee /ansible
parente3328709ff5b07d5bae93318d3e446ecf286f458 (diff)
Adding proxy_cache. #408
Diffstat (limited to 'ansible')
-rw-r--r--ansible/templates/nginx.conf9
1 files changed, 9 insertions, 0 deletions
diff --git a/ansible/templates/nginx.conf b/ansible/templates/nginx.conf
index 0a420d77..1fc6e674 100644
--- a/ansible/templates/nginx.conf
+++ b/ansible/templates/nginx.conf
@@ -1,3 +1,5 @@
+proxy_cache_path /var/cache/lemmy_frontend levels=1:2 keys_zone=lemmy_frontend_cache:10m max_size=100m use_temp_path=off;
+
server {
listen 80;
server_name {{ domain }};
@@ -59,6 +61,13 @@ server {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
+
+ # Proxy Cache
+ proxy_cache lemmy_frontend_cache;
+ proxy_cache_use_stale error timeout http_500 http_502 http_503 http_504;
+ proxy_cache_revalidate on;
+ proxy_cache_lock on;
+ proxy_cache_min_uses 5;
}
location /pictshare/ {