File size: 479 Bytes
0f859ae
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#sudo vi /etc/nginx/sites-available/default
#sudo systemctl restart nginx


server {
    listen 8765;  # 一つのポートでまとめる

    location /swallow70/ {proxy_pass http://localhost:8019/v1/;}
    location /llm-jp-13b/ {proxy_pass http://localhost:8016/v1/;}
    location /Tanuki-8B-dpo/ {proxy_pass http://localhost:8012/v1/;}
    location /calm3-22b-chat/ {proxy_pass http://localhost:8011/v1/;}
    location /Swallow-8B/ {proxy_pass http://localhost:8010/v1/;}
}