From 09d386040d79f3edb399ba724352c58c467dd868 Mon Sep 17 00:00:00 2001 From: tcely Date: Mon, 3 Mar 2025 14:09:56 -0500 Subject: [PATCH] `nginx` only creates one directory level --- config/root/etc/nginx/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/root/etc/nginx/nginx.conf b/config/root/etc/nginx/nginx.conf index dbf8628a..e6b99b68 100644 --- a/config/root/etc/nginx/nginx.conf +++ b/config/root/etc/nginx/nginx.conf @@ -54,9 +54,9 @@ http { proxy_cache_lock on; proxy_cache_use_stale updating; # temporary files in shared memory - proxy_temp_path /dev/shm/nginx/tmp 1; + proxy_temp_path /dev/shm/nginx-tmp 1; # change this to /config/cache/nginx for a persistent cache - proxy_cache_path /dev/shm/nginx/cache levels=1:2:2 keys_zone=gunicorn:4m inactive=48h max_size=256m min_free=16m; + proxy_cache_path /dev/shm/nginx-cache levels=1:2:2 keys_zone=gunicorn:4m inactive=48h max_size=256m min_free=16m; # X-Forwarded-Host (pass-through, or set) map $http_x_forwarded_host $x_forwarded_host {