8 Commits
master ... test

Author SHA1 Message Date
zhangkaihuai
6ba9aa5d1d 更新 nginx.conf 2025-03-24 05:30:52 +00:00
zhangkaihuai
68895dd1fd 更新 nginx.conf 2025-03-24 05:09:57 +00:00
zhangkaihuai
85f49e0e1a 更新 nginx.conf 2025-03-02 13:41:52 +00:00
zhangkaihuai
1b7374c300 更新 nginx.conf 2025-03-02 13:35:38 +00:00
zhangkaihuai
fc51fe7cdf 更新 nginx.conf 2025-03-02 13:28:14 +00:00
zhangkaihuai
77c8885d6d 更新 nginx.conf 2025-03-02 12:47:48 +00:00
3ddcc6aa68 Merge pull request 'master' (#231) from master into test
Reviewed-on: http://git.feashow.cn/feashow/SmartOpsWeb/pulls/231
2025-02-22 03:42:37 +00:00
ef1e7103fe Merge pull request 'master' (#229) from master into test
Reviewed-on: http://git.feashow.cn/feashow/SmartOpsWeb/pulls/229
2025-01-15 14:58:29 +00:00

View File

@@ -23,7 +23,10 @@ http {
sendfile on; sendfile on;
keepalive_timeout 65;
keepalive_timeout 60s;
keepalive_requests 10000;
#keepalive_timeout 65;
server { server {
listen 80; listen 80;
@@ -48,5 +51,19 @@ http {
index index.html index.htm; index index.html index.htm;
try_files $uri $uri/ /index.html; try_files $uri $uri/ /index.html;
} }
location /ollama {
proxy_pass http://10.8.105.26:11434;
}
location /dify/dify {
proxy_pass http://10.8.105.207:8080;
}
} }
} }