From baedb077ddad3c02acd922ced4b9975481fcfd63 Mon Sep 17 00:00:00 2001 From: Reboot-Codes Date: Mon, 22 Apr 2024 01:20:25 -0700 Subject: [PATCH] Btw, telling nginx the right dir for root might be helpful. Just a bit. --- nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index c84cffd..e9e50db 100644 --- a/nginx.conf +++ b/nginx.conf @@ -15,7 +15,7 @@ http { server_name _; server_tokens off; - root /app/static; + root /app/out; gzip_static on; } }