* Update py_autofix.yml * feat: frontend docker nginx add brower cache accelerate page access * Revert "Update py_autofix.yml" This reverts commit 7aed45e98602f57c2d6d33532080bad30cf02507. * revert py_autofix.yml * Revert "Update py_autofix.yml" This reverts commit 7aed45e98602f57c2d6d33532080bad30cf02507. * add: remove blank line * fix: update Nginx configuration to prevent caching for index.html --------- Co-authored-by: tianzhipeng <tzpabc@gmail.com> Co-authored-by: caojianwei-jk <caojianwei-jk@360shuke.com>
51 lines
No EOL
1.2 KiB
Text
51 lines
No EOL
1.2 KiB
Text
worker_processes auto;
|
|
pid /tmp/nginx.pid;
|
|
events {}
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
default_type text/plain;
|
|
|
|
types {
|
|
text/html html;
|
|
text/css css;
|
|
application/javascript js;
|
|
}
|
|
|
|
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 ${FRONTEND_PORT};
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
try_files $uri $uri/ /index.html =404;
|
|
expires 1d;
|
|
add_header Cache-Control "public";
|
|
}
|
|
location = /index.html {
|
|
root /usr/share/nginx/html;
|
|
add_header Cache-Control "no-cache, no-store, must-revalidate";
|
|
etag on;
|
|
}
|
|
|
|
location /api {
|
|
proxy_pass ${BACKEND_URL};
|
|
}
|
|
location /health_check {
|
|
proxy_pass ${BACKEND_URL};
|
|
}
|
|
location /health {
|
|
proxy_pass ${BACKEND_URL};
|
|
}
|
|
|
|
include /etc/nginx/extra-conf.d/*.conf;
|
|
}
|
|
} |