document-translation / nginx.conf
dmartincy's picture
First app simplification
e7c6240
raw
history blame
437 Bytes
events {
worker_connections 1024;
}
http {
server {
listen 7860;
listen 7861;
location / {
root /docauth;
}
location /client/api/v1/ {
proxy_pass http://127.0.0.1:4000;
}
location /v1/embeddings {
proxy_pass http://127.0.0.1:8081;
}
location /v1 {
proxy_pass http://127.0.0.1:8082;
}
}
}