From 2ad2b77d7f603b1e298a5b3a3409aa3d32b373d6 Mon Sep 17 00:00:00 2001 From: johndoe6345789 Date: Sat, 17 Jan 2026 16:24:29 +0000 Subject: [PATCH] Update nginx.conf --- nginx.conf | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index 8efb895..f3c173d 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,6 +1,7 @@ server { listen 80; server_name _; + root /usr/share/nginx/html; index index.html; @@ -22,7 +23,14 @@ server { gzip on; gzip_vary on; gzip_min_length 1024; - gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml+rss application/json application/javascript; + gzip_types + text/plain + text/css + text/xml + text/javascript + application/javascript + application/json + application/xml+rss; error_page 404 /index.html; }