Compare commits

...

8 Commits

Author SHA1 Message Date
3a6909b86d feat: 增加家庭记代理 2026-09-12 14:52:13 +08:00
18859d83bf feat: 增加健康记代理 2026-08-31 21:46:40 +08:00
ce6392c1cb feat:增加智能学习 2026-07-29 22:12:08 +08:00
9c9e0adc6e feat:增加智能体接口 2026-07-04 19:08:44 +08:00
7894b0c865 feat:增加sweetchat代理 2026-06-21 23:24:45 +08:00
5f8ed9e3b4 feat:增加音乐路径 2026-05-20 22:09:11 +08:00
0445e0a38e Merge branch 'master' of https://cxxgit.iepose.cn/Cxx0822/st-nginx-proxy 2026-04-27 22:13:39 +08:00
67d83666ca feat:增加简历模块 2026-04-27 22:13:21 +08:00
2 changed files with 68 additions and 1 deletions

View File

@@ -25,6 +25,14 @@ server {
proxy_set_header X-Forwarded-Proto $scheme;
}
location /resume/ {
proxy_pass http://host.docker.internal:87/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location /sweet-hut/ {
proxy_pass http://host.docker.internal:83/;
proxy_set_header Host $host;
@@ -49,6 +57,14 @@ server {
proxy_set_header X-Forwarded-Proto $scheme;
}
location /study-agent/ {
proxy_pass http://host.docker.internal:88/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location /calibre/ {
proxy_pass http://host.docker.internal:8100/;
proxy_set_header Host $host;
@@ -84,6 +100,14 @@ server {
proxy_set_header X-Forwarded-Proto $scheme;
}
location /music/ {
proxy_pass http://host.docker.internal:4000/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location /home-api/ {
proxy_pass http://host.docker.internal:8081/;
}
@@ -106,6 +130,49 @@ server {
proxy_pass http://host.docker.internal:3000/;
}
location /agent-api/ {
proxy_buffering off;
proxy_pass http://host.docker.internal:8000/;
}
location /study-api/ {
proxy_buffering off;
proxy_pass http://host.docker.internal:8001/;
}
location /health-api/ {
proxy_buffering off;
proxy_pass http://host.docker.internal:8002/;
}
location /family-api/ {
proxy_buffering off;
proxy_pass http://host.docker.internal:8003/;
}
location /patch-api/ {
proxy_buffering off;
proxy_pass http://host.docker.internal:8004/;
}
location /ws/ {
proxy_pass http://host.docker.internal:5050;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_read_timeout 86400;
}
location /sweet-chat-api/ {
proxy_pass http://host.docker.internal:5051/;
}
location / {
try_files $uri $uri/ =404;
}

View File

@@ -134,7 +134,7 @@ const drawioClick = () => {
}
const resumeClick = () => {
ElMessage.info('敬请期待')
window.open(`${window.location.origin}/resume/`, '_blank');
}
const refreshClick = () => {