document-translation / nginx.conf
dmartincy's picture
Some polishing
d4f99c0
Raw
History Blame
535 Bytes
events {
worker_connections 1024;
}
http {
server {
listen 7860;
listen 7861;
location / {
root /docauth;
}
location /healthcheck {
proxy_pass http://127.0.0.1:4000/healthcheck;
}
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;
}
}
}