[update] 修改项目列表和进度计划相关逻辑

This commit is contained in:
lcj
2025-06-06 19:52:34 +08:00
parent e67d555685
commit 5bb201b272
26 changed files with 694 additions and 94 deletions

View File

@ -1,7 +1,7 @@
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
error_log /mnt/disk1/docker/nginx/log/error.log warn;
pid /mnt/disk1/docker/nginx/nginx.pid;
events {
worker_connections 1024;
@ -19,12 +19,11 @@ http {
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
access_log /mnt/disk1/docker/nginx/log/access.log main;
upstream server {
ip_hash;
server 127.0.0.1:8080;
server 127.0.0.1:8081;
server 127.0.0.1:8899;
}
upstream monitor-admin {
@ -68,12 +67,12 @@ http {
}
location / {
root /usr/share/nginx/html; # docker映射路径 不允许更改
root /mnt/disk1/docker/nginx/html; # docker映射路径 不允许更改
try_files $uri $uri/ /index.html;
index index.html index.htm;
}
location /prod-api/ {
location /api/ {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;