mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-04-22 22:20:07 +08:00
29 lines
700 B
Plaintext
29 lines
700 B
Plaintext
server {
|
|
listen 80;
|
|
server_name _;
|
|
root /ragflow/web/dist;
|
|
|
|
gzip on;
|
|
gzip_min_length 1k;
|
|
gzip_comp_level 9;
|
|
gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;
|
|
gzip_vary on;
|
|
gzip_disable "MSIE [1-6]\.";
|
|
|
|
location /v1 {
|
|
proxy_pass http://ragflow:9380;
|
|
include proxy.conf;
|
|
}
|
|
|
|
location / {
|
|
index index.html;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
# Cache-Control: max-age~@~AExpires
|
|
location ~ ^/static/(css|js|media)/ {
|
|
expires 10y;
|
|
access_log off;
|
|
}
|
|
}
|