From 1b7f21174aead6e53c655b7dad098c9bec11200f Mon Sep 17 00:00:00 2001 From: xiaodangjia Date: Tue, 14 Oct 2025 06:25:36 +0000 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E6=96=87=E4=BB=B6=E8=87=B3?= =?UTF-8?q?=20demo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cs --- demo/nginx.conf | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 demo/nginx.conf diff --git a/demo/nginx.conf b/demo/nginx.conf new file mode 100644 index 0000000..cabf31c --- /dev/null +++ b/demo/nginx.conf @@ -0,0 +1,20 @@ +server { + gzip on; + gzip_comp_level 2; + gzip_min_length 1000; + gzip_types text/xml text/css; + gzip_http_version 1.1; + gzip_vary on; + gzip_disable "MSIE [4-6] \."; + + listen 80; + + location / { + root /usr/share/nginx/html; + index index.html index.htm; + try_files $uri $uri/ /index.html =404; + } + + + include /etc/nginx/extra-conf.d/*.conf; +}